pull/944/head
krahets 1 year ago
parent eda4539790
commit e181f9b491

@ -616,7 +616,7 @@ comments: true
```go title="linked_list.go" ```go title="linked_list.go"
/* 删除链表的节点 n0 之后的首个节点 */ /* 删除链表的节点 n0 之后的首个节点 */
func removeNode(n0 *ListNode) { func removeItem(n0 *ListNode) {
if n0.Next == nil { if n0.Next == nil {
return return
} }
@ -705,7 +705,7 @@ comments: true
```c title="linked_list.c" ```c title="linked_list.c"
/* 删除链表的节点 n0 之后的首个节点 */ /* 删除链表的节点 n0 之后的首个节点 */
// 注意stdio.h 占用了 remove 关键词 // 注意stdio.h 占用了 remove 关键词
void removeNode(ListNode *n0) { void removeItem(ListNode *n0) {
if (!n0->next) if (!n0->next)
return; return;
// n0 -> P -> n1 // n0 -> P -> n1

@ -139,7 +139,7 @@ comments: true
```csharp title="binary_search_recur.cs" ```csharp title="binary_search_recur.cs"
/* 二分查找:问题 f(i, j) */ /* 二分查找:问题 f(i, j) */
int Dfs(int[] nums, int target, int i, int j) { int DFS(int[] nums, int target, int i, int j) {
// 若区间为空,代表无目标元素,则返回 -1 // 若区间为空,代表无目标元素,则返回 -1
if (i > j) { if (i > j) {
return -1; return -1;
@ -148,10 +148,10 @@ comments: true
int m = (i + j) / 2; int m = (i + j) / 2;
if (nums[m] < target) { if (nums[m] < target) {
// 递归子问题 f(m+1, j) // 递归子问题 f(m+1, j)
return Dfs(nums, target, m + 1, j); return DFS(nums, target, m + 1, j);
} else if (nums[m] > target) { } else if (nums[m] > target) {
// 递归子问题 f(i, m-1) // 递归子问题 f(i, m-1)
return Dfs(nums, target, i, m - 1); return DFS(nums, target, i, m - 1);
} else { } else {
// 找到目标元素,返回其索引 // 找到目标元素,返回其索引
return m; return m;
@ -162,7 +162,7 @@ comments: true
int BinarySearch(int[] nums, int target) { int BinarySearch(int[] nums, int target) {
int n = nums.Length; int n = nums.Length;
// 求解问题 f(0, n-1) // 求解问题 f(0, n-1)
return Dfs(nums, target, 0, n - 1); return DFS(nums, target, 0, n - 1);
} }
``` ```

@ -172,7 +172,7 @@ comments: true
```csharp title="build_tree.cs" ```csharp title="build_tree.cs"
/* 构建二叉树:分治 */ /* 构建二叉树:分治 */
TreeNode Dfs(int[] preorder, Dictionary<int, int> inorderMap, int i, int l, int r) { TreeNode DFS(int[] preorder, Dictionary<int, int> inorderMap, int i, int l, int r) {
// 子树区间为空时终止 // 子树区间为空时终止
if (r - l < 0) if (r - l < 0)
return null; return null;
@ -181,9 +181,9 @@ comments: true
// 查询 m ,从而划分左右子树 // 查询 m ,从而划分左右子树
int m = inorderMap[preorder[i]]; int m = inorderMap[preorder[i]];
// 子问题:构建左子树 // 子问题:构建左子树
root.left = Dfs(preorder, inorderMap, i + 1, l, m - 1); root.left = DFS(preorder, inorderMap, i + 1, l, m - 1);
// 子问题:构建右子树 // 子问题:构建右子树
root.right = Dfs(preorder, inorderMap, i + 1 + m - l, m + 1, r); root.right = DFS(preorder, inorderMap, i + 1 + m - l, m + 1, r);
// 返回根节点 // 返回根节点
return root; return root;
} }
@ -195,7 +195,7 @@ comments: true
for (int i = 0; i < inorder.Length; i++) { for (int i = 0; i < inorder.Length; i++) {
inorderMap.TryAdd(inorder[i], i); inorderMap.TryAdd(inorder[i], i);
} }
TreeNode root = Dfs(preorder, inorderMap, 0, 0, inorder.Length - 1); TreeNode root = DFS(preorder, inorderMap, 0, 0, inorder.Length - 1);
return root; return root;
} }
``` ```

@ -208,25 +208,25 @@ comments: true
} }
/* 求解汉诺塔:问题 f(i) */ /* 求解汉诺塔:问题 f(i) */
void Dfs(int i, List<int> src, List<int> buf, List<int> tar) { void DFS(int i, List<int> src, List<int> buf, List<int> tar) {
// 若 src 只剩下一个圆盘,则直接将其移到 tar // 若 src 只剩下一个圆盘,则直接将其移到 tar
if (i == 1) { if (i == 1) {
Move(src, tar); Move(src, tar);
return; return;
} }
// 子问题 f(i-1) :将 src 顶部 i-1 个圆盘借助 tar 移到 buf // 子问题 f(i-1) :将 src 顶部 i-1 个圆盘借助 tar 移到 buf
Dfs(i - 1, src, tar, buf); DFS(i - 1, src, tar, buf);
// 子问题 f(1) :将 src 剩余一个圆盘移到 tar // 子问题 f(1) :将 src 剩余一个圆盘移到 tar
Move(src, tar); Move(src, tar);
// 子问题 f(i-1) :将 buf 顶部 i-1 个圆盘借助 src 移到 tar // 子问题 f(i-1) :将 buf 顶部 i-1 个圆盘借助 src 移到 tar
Dfs(i - 1, buf, src, tar); DFS(i - 1, buf, src, tar);
} }
/* 求解汉诺塔 */ /* 求解汉诺塔 */
void SolveHanota(List<int> A, List<int> B, List<int> C) { void SolveHanota(List<int> A, List<int> B, List<int> C) {
int n = A.Count; int n = A.Count;
// 将 A 顶部 n 个圆盘借助 B 移到 C // 将 A 顶部 n 个圆盘借助 B 移到 C
Dfs(n, A, B, C); DFS(n, A, B, C);
} }
``` ```

@ -472,18 +472,18 @@ $$
```csharp title="climbing_stairs_dfs.cs" ```csharp title="climbing_stairs_dfs.cs"
/* 搜索 */ /* 搜索 */
int Dfs(int i) { int DFS(int i) {
// 已知 dp[1] 和 dp[2] ,返回之 // 已知 dp[1] 和 dp[2] ,返回之
if (i == 1 || i == 2) if (i == 1 || i == 2)
return i; return i;
// dp[i] = dp[i-1] + dp[i-2] // dp[i] = dp[i-1] + dp[i-2]
int count = Dfs(i - 1) + Dfs(i - 2); int count = DFS(i - 1) + DFS(i - 2);
return count; return count;
} }
/* 爬楼梯:搜索 */ /* 爬楼梯:搜索 */
int ClimbingStairsDFS(int n) { int ClimbingStairsDFS(int n) {
return Dfs(n); return DFS(n);
} }
``` ```
@ -736,7 +736,7 @@ $$
```csharp title="climbing_stairs_dfs_mem.cs" ```csharp title="climbing_stairs_dfs_mem.cs"
/* 记忆化搜索 */ /* 记忆化搜索 */
int Dfs(int i, int[] mem) { int DFS(int i, int[] mem) {
// 已知 dp[1] 和 dp[2] ,返回之 // 已知 dp[1] 和 dp[2] ,返回之
if (i == 1 || i == 2) if (i == 1 || i == 2)
return i; return i;
@ -744,7 +744,7 @@ $$
if (mem[i] != -1) if (mem[i] != -1)
return mem[i]; return mem[i];
// dp[i] = dp[i-1] + dp[i-2] // dp[i] = dp[i-1] + dp[i-2]
int count = Dfs(i - 1, mem) + Dfs(i - 2, mem); int count = DFS(i - 1, mem) + DFS(i - 2, mem);
// 记录 dp[i] // 记录 dp[i]
mem[i] = count; mem[i] = count;
return count; return count;
@ -755,7 +755,7 @@ $$
// mem[i] 记录爬到第 i 阶的方案总数,-1 代表无记录 // mem[i] 记录爬到第 i 阶的方案总数,-1 代表无记录
int[] mem = new int[n + 1]; int[] mem = new int[n + 1];
Array.Fill(mem, -1); Array.Fill(mem, -1);
return Dfs(n, mem); return DFS(n, mem);
} }
``` ```

@ -532,7 +532,7 @@ BFS 通常借助队列来实现。队列具有“先入先出”的性质,这
```csharp title="graph_dfs.cs" ```csharp title="graph_dfs.cs"
/* 深度优先遍历 DFS 辅助函数 */ /* 深度优先遍历 DFS 辅助函数 */
void Dfs(GraphAdjList graph, HashSet<Vertex> visited, List<Vertex> res, Vertex vet) { void DFS(GraphAdjList graph, HashSet<Vertex> visited, List<Vertex> res, Vertex vet) {
res.Add(vet); // 记录访问顶点 res.Add(vet); // 记录访问顶点
visited.Add(vet); // 标记该顶点已被访问 visited.Add(vet); // 标记该顶点已被访问
// 遍历该顶点的所有邻接顶点 // 遍历该顶点的所有邻接顶点
@ -541,7 +541,7 @@ BFS 通常借助队列来实现。队列具有“先入先出”的性质,这
continue; // 跳过已被访问过的顶点 continue; // 跳过已被访问过的顶点
} }
// 递归访问邻接顶点 // 递归访问邻接顶点
Dfs(graph, visited, res, adjVet); DFS(graph, visited, res, adjVet);
} }
} }
@ -552,7 +552,7 @@ BFS 通常借助队列来实现。队列具有“先入先出”的性质,这
List<Vertex> res = new(); List<Vertex> res = new();
// 哈希表,用于记录已被访问过的顶点 // 哈希表,用于记录已被访问过的顶点
HashSet<Vertex> visited = new(); HashSet<Vertex> visited = new();
Dfs(graph, visited, res, startVet); DFS(graph, visited, res, startVet);
return res; return res;
} }
``` ```

@ -1760,7 +1760,7 @@ comments: true
node->next = deque->front; node->next = deque->front;
deque->front = node; // 更新头节点 deque->front = node; // 更新头节点
} }
// 尾入队操作 // 尾入队操作
else { else {
// 将 node 添加至链表尾部 // 将 node 添加至链表尾部
deque->rear->next = node; deque->rear->next = node;

@ -458,18 +458,18 @@ comments: true
} }
/* 深度优先遍历 */ /* 深度优先遍历 */
private void Dfs(int i, string order, List<int> res) { private void DFS(int i, string order, List<int> res) {
// 若为空位,则返回 // 若为空位,则返回
if (!Val(i).HasValue) if (!Val(i).HasValue)
return; return;
// 前序遍历 // 前序遍历
if (order == "pre") if (order == "pre")
res.Add(Val(i).Value); res.Add(Val(i).Value);
Dfs(Left(i), order, res); DFS(Left(i), order, res);
// 中序遍历 // 中序遍历
if (order == "in") if (order == "in")
res.Add(Val(i).Value); res.Add(Val(i).Value);
Dfs(Right(i), order, res); DFS(Right(i), order, res);
// 后序遍历 // 后序遍历
if (order == "post") if (order == "post")
res.Add(Val(i).Value); res.Add(Val(i).Value);
@ -478,21 +478,21 @@ comments: true
/* 前序遍历 */ /* 前序遍历 */
public List<int> PreOrder() { public List<int> PreOrder() {
List<int> res = new(); List<int> res = new();
Dfs(0, "pre", res); DFS(0, "pre", res);
return res; return res;
} }
/* 中序遍历 */ /* 中序遍历 */
public List<int> InOrder() { public List<int> InOrder() {
List<int> res = new(); List<int> res = new();
Dfs(0, "in", res); DFS(0, "in", res);
return res; return res;
} }
/* 后序遍历 */ /* 后序遍历 */
public List<int> PostOrder() { public List<int> PostOrder() {
List<int> res = new(); List<int> res = new();
Dfs(0, "post", res); DFS(0, "post", res);
return res; return res;
} }
} }

@ -2361,7 +2361,7 @@ AVL 树的节点插入操作与二叉搜索树在主体上类似。唯一的区
```c title="avl_tree.c" ```c title="avl_tree.c"
/* 删除节点 */ /* 删除节点 */
// 由于引入了 stdio.h ,此处无法使用 remove 关键词 // 由于引入了 stdio.h ,此处无法使用 remove 关键词
void removeNode(aVLTree *tree, int val) { void removeItem(aVLTree *tree, int val) {
TreeNode *root = removeHelper(tree->root, val); TreeNode *root = removeHelper(tree->root, val);
} }

@ -1357,7 +1357,7 @@ comments: true
```c title="binary_search_tree.c" ```c title="binary_search_tree.c"
/* 删除节点 */ /* 删除节点 */
// 由于引入了 stdio.h ,此处无法使用 remove 关键词 // 由于引入了 stdio.h ,此处无法使用 remove 关键词
void removeNode(binarySearchTree *bst, int num) { void removeItem(binarySearchTree *bst, int num) {
// 若树为空,直接提前返回 // 若树为空,直接提前返回
if (bst->root == NULL) if (bst->root == NULL)
return; return;
@ -1399,7 +1399,7 @@ comments: true
} }
int tmpVal = tmp->val; int tmpVal = tmp->val;
// 递归删除节点 tmp // 递归删除节点 tmp
removeNode(bst, tmp->val); removeItem(bst, tmp->val);
// 用 tmp 覆盖 cur // 用 tmp 覆盖 cur
cur->val = tmpVal; cur->val = tmpVal;
} }

Loading…
Cancel
Save