Commit 40a595d

mo khan <mo.khan@gmail.com>
2020-05-24 19:18:36
Add links to things to review
1 parent 6875199
Changed files (1)
unit
unit/02/README.md
@@ -1,5 +1,7 @@
 Study the following sections from Pat Morin’s textbook:
 
+Read:
+
 * 2.1 ArrayStack: Fast Stack Operations Using an Array
 * 2.2 FastArrayStack: An Optimized ArrayStack
 * 2.3 ArrayQueue: An Array-Based Queue
@@ -7,6 +9,11 @@ Study the following sections from Pat Morin’s textbook:
 * 2.5 DualArrayDeque: Building a Deque from Two Stacks
 * 2.6 RootishArrayStack: A Space-Efficient Array Stack
 
+Execute:
+* https://www.cs.usfca.edu/~galles/visualization/Algorithms.html
+* http://www.cs.usfca.edu/~galles/visualization/StackArray.html
+* http://www.cs.usfca.edu/~Egalles/visualization/QueueArray.html
+
 # Chapter 2 - Array-Based Lists
 
 Data structures that work by storing data in a single array have common advantages and limitations: