Skip to content

Commit 5b73600

Browse files
committed
Tweak organization of index page
1 parent 9d1d32c commit 5b73600

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

README.markdown

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,23 +92,21 @@ Second, it matters what particular operations you'll be performing most, as cert
9292

9393
Often just using the built-in `Array`, `Dictionary`, and `Set` types is sufficient, but sometimes you may want something more fancy...
9494

95-
### Arrays and lists
96-
97-
Variations on arrays:
95+
### Variations on arrays
9896

9997
- [Array2D](Array2D/). A two-dimensional array with fixed dimensions. Useful for board games.
10098
- [Fixed Size Array](Fixed Size Array/). When you know beforehand how large your data will be, it might be more efficient to use an array with a fixed size.
10199
- Ordered Array. An array that is always sorted.
102100
- Ring Buffer. Also known as a circular buffer. An array of a certain size that conceptually wraps around back to the beginning.
103101

104-
Queues:
102+
### Queues
105103

106104
- [Stack](Stack/). Last-in, first-out!
107105
- [Queue](Queue/). First-in, first-out!
108106
- Deque
109107
- Priority Queue
110108

111-
Lists:
109+
### Lists
112110

113111
- Singly Linked List
114112
- Doubly Linked List

0 commit comments

Comments
 (0)