Commit 40a595d
Changed files (1)
unit
02
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: