@@ -26,6 +26,8 @@ This is a work in progress. More algorithms will be added soon. :-)
2626
2727[ How to contribute] (How to Contribute.markdown). Report an issue to leave feedback, or submit a pull request.
2828
29+ [ Under construction] (Under Construction.markdown). Algorithms that are under construction.
30+
2931## Where to start?
3032
3133If you're new to algorithms and data structures, here are a few good ones to start out with:
@@ -74,7 +76,6 @@ Fast sorts:
7476
7577Special-purpose sorts:
7678
77- - [ Bucket Sort] (Bucket Sort/) :construction :
7879- [ Counting Sort] (Counting Sort/)
7980- Radix Sort
8081- [ Topological Sort] (Topological Sort/)
@@ -131,7 +132,6 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types
131132- [ Queue] ( Queue/ ) . First-in, first-out!
132133- [ Deque] ( Deque/ ) . A double-ended queue.
133134- [ Priority Queue] (Priority Queue). A queue where the most important element is always at the front.
134- - [ Bounded Priority Queue] (Bounded Priority Queue). A queue that is bounded to have a limited number of elements. :construction :
135135- [ Ring Buffer] (Ring Buffer/). Also known as a circular buffer. An array of a certain size that conceptually wraps around back to the beginning.
136136
137137### Lists
@@ -144,7 +144,6 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types
144144- [ Tree] ( Tree/ ) . A general-purpose tree structure.
145145- [ Binary Tree] (Binary Tree/). A tree where each node has at most two children.
146146- [ Binary Search Tree (BST)] (Binary Search Tree/). A binary tree that orders its nodes in a way that allows for fast queries.
147- - [ AVL Tree] (AVL Tree/). A binary search tree that balances itself using rotations. :construction :
148147- Red-Black Tree
149148- Splay Tree
150149- Threaded Binary Tree
@@ -154,7 +153,6 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types
154153- Fibonacci Heap
155154- Trie
156155- B-Tree
157- - [ Radix Tree] (Radix Tree/) :construction :
158156
159157### Hashing
160158
0 commit comments