mirror of
https://github.com/krahets/hello-algo.git
synced 2026-07-07 21:24:18 +00:00
Polish the chapter of graph, hashing, appendix
This commit is contained in:
@@ -25,7 +25,7 @@ void main() {
|
||||
|
||||
/* 插入与删除结点 */
|
||||
TreeNode p = TreeNode(0);
|
||||
// 在 n1 -> n2 中间插入节点 p
|
||||
// 在 n1 -> n2 中间插入结点 p
|
||||
n1.left = p;
|
||||
p.left = n2;
|
||||
print("\n插入结点 P 后\n");
|
||||
|
||||
Reference in New Issue
Block a user