Skip to content

Commit 56ff37d

Browse files
committed
Update READMEs.
1 parent 0b89dce commit 56ff37d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.zh-TW.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ _Read this in other languages:_
1414

1515
資料結構是一個電腦用來組織和排序資料的特定方式,透過這樣的方式資料可以有效率地被讀取以及修改。更精確地說,一個資料結構是一個資料值的集合、彼此間的關係,函數或者運作可以應用於資料上。
1616

17-
* [Linked List 鏈結串列](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/linked-list)
18-
* [Queue 貯列](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/queue)
19-
* [Stack 堆疊](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/stack)
20-
* [Hash Table 雜湊表](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/hash-table)
21-
* [Heap ](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/heap)
22-
* [Priority Queue 優先貯列](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/priority-queue)
23-
* [Trie 字典樹](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/trie)
24-
* [Tree ](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/tree)
25-
* [Binary Search Tree 二元搜尋樹](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/tree/binary-search-tree)
26-
* [AVL Tree AVL樹](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/tree/avl-tree)
17+
* [鏈結串列](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/linked-list)
18+
* [貯列](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/queue)
19+
* [堆疊](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/stack)
20+
* [雜湊表](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/hash-table)
21+
* [](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/heap)
22+
* [優先貯列](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/priority-queue)
23+
* [字典樹](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/trie)
24+
* [](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/tree)
25+
* [二元搜尋樹](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/tree/binary-search-tree)
26+
* [AVL樹](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/tree/avl-tree)
2727
* [紅黑樹](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/tree/red-black-tree)
28-
* [Graph ](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/graph) (有向跟無向皆包含)
29-
* [Disjoint Set 互斥集](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/disjoint-set)
28+
* [](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/graph) (有向跟無向皆包含)
29+
* [互斥集](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/disjoint-set)
3030

3131
## 演算法
3232

0 commit comments

Comments
 (0)