@@ -14,19 +14,19 @@ _Read this in other languages:_
14
14
15
15
資料結構是一個電腦用來組織和排序資料的特定方式,透過這樣的方式資料可以有效率地被讀取以及修改。更精確地說,一個資料結構是一個資料值的集合、彼此間的關係,函數或者運作可以應用於資料上。
16
16
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 )
27
27
* [ 紅黑樹] ( 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 )
30
30
31
31
## 演算法
32
32
0 commit comments