feat: add Swift codes for binary_search_edge article (#518)

This commit is contained in:
nuomi1 2023-05-28 17:26:09 +08:00 committed by GitHub
parent 5cf10d6924
commit 4ce20f6bbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 66 additions and 0 deletions

View File

@ -42,6 +42,7 @@ let package = Package(
.executable(name: "graph_dfs", targets: ["graph_dfs"]), .executable(name: "graph_dfs", targets: ["graph_dfs"]),
// chapter_searching // chapter_searching
.executable(name: "binary_search", targets: ["binary_search"]), .executable(name: "binary_search", targets: ["binary_search"]),
.executable(name: "binary_search_edge", targets: ["binary_search_edge"]),
.executable(name: "two_sum", targets: ["two_sum"]), .executable(name: "two_sum", targets: ["two_sum"]),
.executable(name: "linear_search", targets: ["linear_search"]), .executable(name: "linear_search", targets: ["linear_search"]),
.executable(name: "hashing_search", targets: ["hashing_search"]), .executable(name: "hashing_search", targets: ["hashing_search"]),
@ -103,6 +104,7 @@ let package = Package(
.executableTarget(name: "graph_dfs", dependencies: ["utils", "graph_adjacency_list_target"], path: "chapter_graph", sources: ["graph_dfs.swift"]), .executableTarget(name: "graph_dfs", dependencies: ["utils", "graph_adjacency_list_target"], path: "chapter_graph", sources: ["graph_dfs.swift"]),
// chapter_searching // chapter_searching
.executableTarget(name: "binary_search", path: "chapter_searching", sources: ["binary_search.swift"]), .executableTarget(name: "binary_search", path: "chapter_searching", sources: ["binary_search.swift"]),
.executableTarget(name: "binary_search_edge", path: "chapter_searching", sources: ["binary_search_edge.swift"]),
.executableTarget(name: "two_sum", path: "chapter_searching", sources: ["two_sum.swift"]), .executableTarget(name: "two_sum", path: "chapter_searching", sources: ["two_sum.swift"]),
.executableTarget(name: "linear_search", dependencies: ["utils"], path: "chapter_searching", sources: ["linear_search.swift"]), .executableTarget(name: "linear_search", dependencies: ["utils"], path: "chapter_searching", sources: ["linear_search.swift"]),
.executableTarget(name: "hashing_search", dependencies: ["utils"], path: "chapter_searching", sources: ["hashing_search.swift"]), .executableTarget(name: "hashing_search", dependencies: ["utils"], path: "chapter_searching", sources: ["hashing_search.swift"]),

View File

@ -0,0 +1,64 @@
/**
* 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)")
}
}