You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/codes/swift/chapter_searching/binary_search_edge.swift

65 lines
1.9 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* File: binary_search_edge.swift
* Created Time: 2023-05-28
* Author: nuomi1 (nuomi1@qq.com)
*/
/* */
func binarySearchLeftEdge(nums: [Int], target: Int) -> Int {
// [0, n-1]
var i = 0
var j = nums.count - 1
while i <= j {
let m = i + (j - 1) / 2 // m
if nums[m] < target {
i = m + 1 // target [m+1, j]
} else if nums[m] > target {
j = m - 1 // target [i, m-1]
} else {
j = m - 1 // target [i, m-1]
}
}
if i == nums.count || nums[i] != target {
return -1 // -1
}
return i
}
/* */
func binarySearchRightEdge(nums: [Int], target: Int) -> Int {
// [0, n-1]
var i = 0
var j = nums.count - 1
while i <= j {
let m = i + (j - i) / 2 // m
if nums[m] < target {
i = m + 1 // target [m+1, j]
} else if nums[m] > target {
j = m - 1 // target [i, m-1]
} else {
i = m + 1 // target [m+1, j]
}
}
if j < 0 || nums[j] != target {
return -1 // -1
}
return j
}
@main
enum BinarySearchEdge {
/* Driver Code */
static func main() {
let target = 6
let nums = [1, 3, 6, 6, 6, 6, 6, 10, 12, 15]
//
let indexLeft = binarySearchLeftEdge(nums: nums, target: target)
print("数组中最左一个元素 6 的索引 = \(indexLeft)")
//
let indexRight = binarySearchRightEdge(nums: nums, target: target)
print("数组中最右一个元素 6 的索引 = \(indexRight)")
}
}