Merge branch 'master' of github.com:krahets/hello-algo

This commit is contained in:
Yudong Jin
2023-01-05 01:39:30 +08:00
7 changed files with 236 additions and 3 deletions

View File

@@ -149,6 +149,22 @@ comments: true
}
```
=== "Swift"
```swift title="leetcode_two_sum.swift"
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]
}
```
### 方法二:辅助哈希表
时间复杂度 $O(N)$ ,空间复杂度 $O(N)$ ,属于「空间换时间」。
@@ -294,3 +310,20 @@ comments: true
}
}
```
=== "Swift"
```swift title="leetcode_two_sum.swift"
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]
}
```

View File

@@ -120,7 +120,7 @@ comments: true
- 「根结点 Root Node」二叉树最顶层的结点其没有父结点
- 「叶结点 Leaf Node」没有子结点的结点其两个指针都指向 $\text{null}$
- 结点所处「层 Level」从顶底依次增加,根结点所处层为 1
- 结点所处「层 Level」从顶底依次增加,根结点所处层为 1
- 结点「度 Degree」结点的子结点数量。二叉树中度的范围是 0, 1, 2
- 「边 Edge」连接两个结点的边即结点指针
- 二叉树「高度」:二叉树中根结点到最远叶结点走过边的数量;