Feature/chapter searching swift (#673)

* fix: remove binary_search_edge

* feat: add Swift codes for binary_search_insertion article

* feat: add Swift codes for binary_search_edge article
This commit is contained in:
nuomi1
2023-08-06 23:09:32 +08:00
committed by GitHub
parent 08e4924054
commit fceea4bbda
4 changed files with 123 additions and 1 deletions

View File

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

View File

@@ -0,0 +1,67 @@
/**
* File: binary_search_insertion.swift
* Created Time: 2023-08-06
* Author: nuomi1 (nuomi1@qq.com)
*/
/* */
func binarySearchInsertionSimple(nums: [Int], target: Int) -> Int {
var i = 0, j = nums.count - 1 // [0, n-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 {
return m // target m
}
}
// target i
return i
}
/* */
public func binarySearchInsertion(nums: [Int], target: Int) -> Int {
var i = 0, j = nums.count - 1 // [0, n-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 {
j = m - 1 // target [i, m-1]
}
}
// i
return i
}
#if !TARGET
@main
enum BinarySearchInsertion {
/* Driver Code */
static func main() {
//
var nums = [1, 3, 6, 8, 12, 15, 23, 26, 31, 35]
print("\n数组 nums = \(nums)")
//
for target in [6, 9] {
let index = binarySearchInsertionSimple(nums: nums, target: target)
print("元素 \(target) 的插入点的索引为 \(index)")
}
//
nums = [1, 3, 6, 6, 6, 6, 6, 10, 12, 15]
print("\n数组 nums = \(nums)")
//
for target in [2, 6, 20] {
let index = binarySearchInsertion(nums: nums, target: target)
print("元素 \(target) 的插入点的索引为 \(index)")
}
}
}
#endif

View File

@@ -0,0 +1 @@
binary_search_insertion.swift