Skip to content

Commit 6a00819

Browse files
committed
Add 🚧 emoji to articles that need work
1 parent ef35bf0 commit 6a00819

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.markdown

+6-5
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Bad sorting algorithms (don't use these!):
100100

101101
### Machine learning
102102

103-
- [k-Means Clustering](K-Means/). Unsupervised classifier that partitions data into *k* clusters.
103+
- [k-Means Clustering](K-Means/). Unsupervised classifier that partitions data into *k* clusters. :construction:
104104
- k-Nearest Neighbors
105105
- Linear Regression
106106
- Logistic Regression
@@ -130,7 +130,7 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types
130130
- [Queue](Queue/). First-in, first-out!
131131
- [Deque](Deque/). A double-ended queue.
132132
- [Priority Queue](Priority Queue). A queue where the most important element is always at the front.
133-
- [Bounded Priority Queue](Bounded Priority Queue). A queue that is bounded to have a limited number of elements.
133+
- [Bounded Priority Queue](Bounded Priority Queue). A queue that is bounded to have a limited number of elements. :construction:
134134
- [Ring Buffer](Ring Buffer/). Also known as a circular buffer. An array of a certain size that conceptually wraps around back to the beginning.
135135

136136
### Lists
@@ -143,7 +143,7 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types
143143
- [Tree](Tree/). A general-purpose tree structure.
144144
- [Binary Tree](Binary Tree/). A tree where each node has at most two children.
145145
- [Binary Search Tree (BST)](Binary Search Tree/). A binary tree that orders its nodes in a way that allows for fast queries.
146-
- [AVL Tree](AVL Tree/). A binary search tree that balances itself using rotations.
146+
- [AVL Tree](AVL Tree/). A binary search tree that balances itself using rotations. :construction:
147147
- Red-Black Tree
148148
- Splay Tree
149149
- Threaded Binary Tree
@@ -152,6 +152,7 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types
152152
- [Heap](Heap/). A binary tree stored in an array, so it doesn't use pointers. Makes a great priority queue.
153153
- Fibonacci Heap
154154
- Trie
155+
- [B-Tree](B Tree/) :construction:
155156

156157
### Hashing
157158

@@ -167,9 +168,9 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types
167168

168169
### Graphs
169170

170-
- [Graph](Graph/)
171+
- [Graph](Graph/) :construction:
171172
- [Breadth-First Search (BFS)](Breadth-First Search/)
172-
- [Depth-First Search (DFS)](Depth-First Search/)
173+
- [Depth-First Search (DFS)](Depth-First Search/) :construction:
173174
- Shortest Path
174175
- Minimum Spanning Tree
175176
- All Paths

0 commit comments

Comments
 (0)