Skip to content

Commit 3562988

Browse files
authored
feat: add swift implementation to lcci problem: No.08.03 (#2685)
1 parent 314d540 commit 3562988

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed

lcci/08.03.Magic Index/README.md

+25
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,31 @@ impl Solution {
222222
}
223223
```
224224

225+
```swift
226+
class Solution {
227+
func findMagicIndex(_ nums: [Int]) -> Int {
228+
let left = 0
229+
let right = nums.count - 1
230+
return find(nums, left, right)
231+
}
232+
233+
private func find(_ nums: [Int], _ left: Int, _ right: Int) -> Int {
234+
if left > right {
235+
return -1
236+
}
237+
let mid = (left + right) >> 1
238+
let leftIndex = find(nums, left, mid - 1)
239+
if leftIndex != -1 {
240+
return leftIndex
241+
}
242+
if nums[mid] == mid {
243+
return mid
244+
}
245+
return find(nums, mid + 1, right)
246+
}
247+
}
248+
```
249+
225250
<!-- tabs:end -->
226251

227252
<!-- end -->

lcci/08.03.Magic Index/README_EN.md

+25
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,31 @@ impl Solution {
228228
}
229229
```
230230

231+
```swift
232+
class Solution {
233+
func findMagicIndex(_ nums: [Int]) -> Int {
234+
let left = 0
235+
let right = nums.count - 1
236+
return find(nums, left, right)
237+
}
238+
239+
private func find(_ nums: [Int], _ left: Int, _ right: Int) -> Int {
240+
if left > right {
241+
return -1
242+
}
243+
let mid = (left + right) >> 1
244+
let leftIndex = find(nums, left, mid - 1)
245+
if leftIndex != -1 {
246+
return leftIndex
247+
}
248+
if nums[mid] == mid {
249+
return mid
250+
}
251+
return find(nums, mid + 1, right)
252+
}
253+
}
254+
```
255+
231256
<!-- tabs:end -->
232257

233258
<!-- end -->

lcci/08.03.Magic Index/Solution.swift

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
class Solution {
2+
func findMagicIndex(_ nums: [Int]) -> Int {
3+
let left = 0
4+
let right = nums.count - 1
5+
return find(nums, left, right)
6+
}
7+
8+
private func find(_ nums: [Int], _ left: Int, _ right: Int) -> Int {
9+
if left > right {
10+
return -1
11+
}
12+
let mid = (left + right) >> 1
13+
let leftIndex = find(nums, left, mid - 1)
14+
if leftIndex != -1 {
15+
return leftIndex
16+
}
17+
if nums[mid] == mid {
18+
return mid
19+
}
20+
return find(nums, mid + 1, right)
21+
}
22+
}

0 commit comments

Comments
 (0)