Skip to content

Commit 9416c90

Browse files
author
Christian Encarnacion
committed
Update README.markdown
1 parent 7926986 commit 9416c90

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.markdown

+8-7
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ Fast sorts:
7272

7373
Special-purpose sorts:
7474

75-
- Bucket Sort
76-
- [Counting Sort](Counting-Sort/) :construction:
77-
- [Radix Sort](Radix-Sort/) :construction:
75+
- [Bucket Sort](Bucket Sort/) :construction:
76+
- [Counting Sort](Counting Sort/)
77+
- Radix Sort
7878
- [Topological Sort](Topological Sort/)
7979

8080
Bad sorting algorithms (don't use these!):
@@ -143,14 +143,14 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types
143143
- [Binary Tree](Binary Tree/). A tree where each node has at most two children.
144144
- [Binary Search Tree (BST)](Binary Search Tree/). A binary tree that orders its nodes in a way that allows for fast queries.
145145
- [AVL Tree](AVL Tree/). A binary search tree that balances itself using rotations. :construction:
146-
- [Red-Black Tree](Red Black Trees/) :construction:
146+
- Red-Black Tree
147147
- Splay Tree
148-
- [Threaded Binary Tree](Threaded\ Binary\ Tree/) :construction:
148+
- Threaded Binary Tree
149149
- [Segment Tree](Segment Tree/). Can quickly compute a function over a portion of an array.
150150
- kd-Tree
151151
- [Heap](Heap/). A binary tree stored in an array, so it doesn't use pointers. Makes a great priority queue.
152152
- Fibonacci Heap
153-
- [Trie](Trie/) :construction:
153+
- Trie
154154
- [B-Tree](B Tree/) :construction:
155155

156156
### Hashing
@@ -163,7 +163,7 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types
163163
- [Bloom Filter](Bloom Filter/). A constant-memory data structure that probabilistically tests whether an element is in a set.
164164
- [Hash Set](Hash Set/). A set implemented using a hash table.
165165
- Multiset
166-
- Ordered Set
166+
- [Ordered Set](Ordered Set/). A set where the order of items matters.
167167

168168
### Graphs
169169

@@ -197,6 +197,7 @@ The following books are available for free online:
197197
- [Algorithms, Etc.](http://jeffe.cs.illinois.edu/teaching/algorithms/) by Erickson
198198
- [Algorithms + Data Structures = Programs](http://www.ethoberon.ethz.ch/WirthPubl/AD.pdf) by Wirth
199199
- Algorithms and Data Structures: The Basic Toolbox by Mehlhorn and Sanders
200+
- [Wikibooks: Algorithms and Implementations](https://en.wikibooks.org/wiki/Algorithm_Implementation)
200201

201202
Other algorithm repositories:
202203

0 commit comments

Comments
 (0)