Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6af6323

Browse files
authoredAug 21, 2020
Fix and Update README.zh-CN.md (trekhleb#469)
* Update README.zh-CN.md * Update Translation
1 parent c093fe4 commit 6af6323

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎README.zh-CN.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ _Read this in other languages:_
2929
* `B` [双向链表](src/data-structures/doubly-linked-list/README.zh-CN.md)
3030
* `B` [队列](src/data-structures/queue/README.zh-CN.md)
3131
* `B` [](src/data-structures/stack/README.zh-CN.md)
32-
* `B` [哈希表](src/data-structures/hash-table/README.zh-CN.md)
32+
* `B` [哈希表(散列)](src/data-structures/hash-table/README.zh-CN.md)
3333
* `B` [](src/data-structures/heap/README.zh-CN.md) - 最大堆 & 最小堆
3434
* `B` [优先队列](src/data-structures/priority-queue/README.zh-CN.md)
3535
* `A` [字典树](src/data-structures/trie/README.zh-CN.md)
@@ -52,7 +52,7 @@ _Read this in other languages:_
5252
### 算法主题
5353

5454
* **数学**
55-
* `B` [Bit 操控](src/algorithms/math/bits) - set/get/update/clear 位、乘以/除以二进制位 、变负等
55+
* `B` [位运算](src/algorithms/math/bits) - set/get/update/clear 位、乘以/除以二进制位 、变负等
5656
* `B` [阶乘](src/algorithms/math/factorial/README.zh-CN.md)
5757
* `B` [斐波那契数](src/algorithms/math/fibonacci) - `经典``闭式` 版本
5858
* `B` [素数检测](src/algorithms/math/primality-test) (排除法)
@@ -126,6 +126,8 @@ _Read this in other languages:_
126126
* `A` [旅行推销员问题](src/algorithms/graph/travelling-salesman) - 尽可能以最短的路线访问每个城市并返回原始城市
127127
* **加密**
128128
* `B` [多项式 hash](src/algorithms/cryptography/polynomial-hash) - 基于多项式的 rolling hash 函数
129+
* **机器学习**
130+
* `B` [NanoNeuron](https://github.com/trekhleb/nano-neuron) -7个简单的JS函数,说明机器如何实际学习(向前/向后传播)
129131
* **未分类**
130132
* `B` [汉诺塔](src/algorithms/uncategorized/hanoi-tower)
131133
* `B` [旋转矩阵](src/algorithms/uncategorized/square-matrix-rotation) - 原地算法

0 commit comments

Comments
 (0)
Please sign in to comment.