You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/codes/swift/chapter_searching/two_sum.swift

50 lines
1.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* File: two_sum.swift
* Created Time: 2023-01-03
* Author: nuomi1 (nuomi1@qq.com)
*/
/* */
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 {
/* Driver Code */
static func main() {
// ======= Test Case =======
let nums = [2, 7, 11, 15]
let target = 13
// ====== Driver Code ======
//
var res = twoSumBruteForce(nums: nums, target: target)
print("方法一 res = \(res)")
//
res = twoSumHashTable(nums: nums, target: target)
print("方法二 res = \(res)")
}
}