Skip to content

Commit ed59ea4

Browse files
author
Chris Pilcher
committed
Moved under construction pages to a different area
1 parent 4329e3b commit ed59ea4

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

How to Contribute.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Want to help out with the Swift Algorithm Club? Great!
66

77
Take a look at the [list](README.markdown). Any algorithms or data structures that don't have a link yet are up for grabs.
88

9-
Things marked with :construction: need work.
9+
Algorithms in the [Under construction](Under Construction.markdown) area are being worked on. Suggestions and feedback is welcome!
1010

1111
New algorithms and data structures are always welcome (even if they aren't on the list).
1212

README.markdown

+2-4
Original file line numberDiff line numberDiff line change
@@ -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

3133
If 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

7577
Special-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

Under Construction.markdown

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Under Construction :construction:
2+
3+
Here you'll find algorithms that are under construction.
4+
5+
**Suggestions and feedback are welcome!**
6+
7+
Special-purpose sorts:
8+
9+
- [Bucket Sort](Bucket Sort/)
10+
11+
### Queues
12+
13+
- [Bounded Priority Queue](Bounded Priority Queue). A queue that is bounded to have a limited number of elements.
14+
15+
### Trees
16+
17+
- [AVL Tree](AVL Tree/). A binary search tree that balances itself using rotations.
18+
- [Radix Tree](Radix Tree/)
19+

0 commit comments

Comments
 (0)