hello-algo/codes/swift/chapter_divide_and_conquer/binary_search_recur.swift
nuomi1 b6ac6aa7d7
Feature/chapter divide and conquer swift (#719)
* feat: add Swift codes for binary_search_recur article

* feat: add Swift codes for build_binary_tree_problem article

* feat: add Swift codes for hanota_problem article
2023-09-02 23:08:37 +08:00

45 lines
1.2 KiB
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* File: binary_search_recur.swift
* Created Time: 2023-09-02
* Author: nuomi1 (nuomi1@qq.com)
*/
/* f(i, j) */
func dfs(nums: [Int], target: Int, i: Int, j: Int) -> Int {
// -1
if i > j {
return -1
}
// m
let m = (i + j) / 2
if nums[m] < target {
// f(m+1, j)
return dfs(nums: nums, target: target, i: m + 1, j: j)
} else if nums[m] > target {
// f(i, m-1)
return dfs(nums: nums, target: target, i: i, j: m - 1)
} else {
//
return m
}
}
/* */
func binarySearch(nums: [Int], target: Int) -> Int {
let n = nums.count
// f(0, n-1)
return dfs(nums: nums, target: target, i: 0, j: n - 1)
}
@main
enum BinarySearchRecur {
/* Driver Code */
static func main() {
let target = 6
let nums = [1, 3, 6, 8, 12, 15, 23, 26, 31, 35]
//
let index = binarySearch(nums: nums, target: target)
print("目标元素 6 的索引 = \(index)")
}
}