refactor: Replace 结点 with 节点 (#452)

* Replace 结点 with 节点
Update the footnotes in the figures

* Update mindmap

* Reduce the size of the mindmap.png
This commit is contained in:
Yudong Jin
2023-04-09 04:32:17 +08:00
committed by GitHub
parent 3f4e32b2b0
commit 1c8b7ef559
395 changed files with 2056 additions and 2056 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 68 KiB

+2 -2
View File
@@ -72,9 +72,9 @@
[class]{}-[func]{hashingSearchArray}
```
再比如,如果我们想要给定一个目标点值 `target` ,获取对应的链表点对象,那么也可以使用哈希查找实现。
再比如,如果我们想要给定一个目标点值 `target` ,获取对应的链表点对象,那么也可以使用哈希查找实现。
![哈希查找链表点](hashing_search.assets/hash_search_listnode.png)
![哈希查找链表点](hashing_search.assets/hash_search_listnode.png)
=== "Java"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 74 KiB

+1 -1
View File
@@ -68,7 +68,7 @@
[class]{}-[func]{linearSearchArray}
```
再比如,我们想要在给定一个目标点值 `target` ,返回此点对象,也可以在链表中进行线性查找。
再比如,我们想要在给定一个目标点值 `target` ,返回此点对象,也可以在链表中进行线性查找。
=== "Java"