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

52 lines
1.5 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-08-06
* Author: nuomi1 (nuomi1@qq.com)
*/
import binary_search_insertion_target
/* target */
func binarySearchLeftEdge(nums: [Int], target: Int) -> Int {
// target
let i = binarySearchInsertion(nums: nums, target: target)
// target -1
if i == nums.count || nums[i] != target {
return -1
}
// target i
return i
}
/* target */
func binarySearchRightEdge(nums: [Int], target: Int) -> Int {
// target + 1
let i = binarySearchInsertion(nums: nums, target: target + 1)
// j target i target
let j = i - 1
// target -1
if j == -1 || nums[j] != target {
return -1
}
// target j
return j
}
@main
enum BinarySearchEdge {
/* Driver Code */
static func main() {
//
let nums = [1, 3, 6, 6, 6, 6, 6, 10, 12, 15]
print("\n数组 nums = \(nums)")
//
for target in [6, 7] {
var index = binarySearchLeftEdge(nums: nums, target: target)
print("最左一个元素 \(target) 的索引为 \(index)")
index = binarySearchRightEdge(nums: nums, target: target)
print("最右一个元素 \(target) 的索引为 \(index)")
}
}
}