forked from krahets/hello-algo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Swift codes for space time tradeoff article
- Loading branch information
Showing
3 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
codes/swift/chapter_computational_complexity/leetcode_two_sum.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* File: leetcode_two_sum.swift | ||
* Created Time: 2023-01-03 | ||
* Author: nuomi1 ([email protected]) | ||
*/ | ||
|
||
func twoSumBruteForce(nums: [Int], target: Int) -> [Int] { | ||
// 两层循环,时间复杂度 O(n^2) | ||
for i in nums.indices.dropLast() { | ||
for j in nums.indices.dropFirst(i + 1) { | ||
if nums[i] + nums[j] == target { | ||
return [i, j] | ||
} | ||
} | ||
} | ||
return [0] | ||
} | ||
|
||
func twoSumHashTable(nums: [Int], target: Int) -> [Int] { | ||
// 辅助哈希表,空间复杂度 O(n) | ||
var dic: [Int: Int] = [:] | ||
// 单层循环,时间复杂度 O(n) | ||
for i in nums.indices { | ||
if let j = dic[target - nums[i]] { | ||
return [j, i] | ||
} | ||
dic[nums[i]] = i | ||
} | ||
return [0] | ||
} | ||
|
||
@main | ||
enum LeetcodeTwoSum { | ||
static func main() { | ||
// ======= Test Case ======= | ||
let nums = [2, 7, 11, 15] | ||
let target = 9 | ||
// ====== Driver Code ====== | ||
// 方法一 | ||
var res = twoSumBruteForce(nums: nums, target: target) | ||
print("方法一 res = \(res)") | ||
// 方法二 | ||
res = twoSumHashTable(nums: nums, target: target) | ||
print("方法二 res = \(res)") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters