July 2015
Intermediate to advanced
380 pages
10h 15m
English
At this point in the book, you should know most of the data structures that are used to build all of the other data structures. If you have some kind of List, DArray, Hashmap, and Tree, then you can build almost anything else out there. Everything else you run into either uses these or some variant of these. If it doesn’t, then it’s most likely an exotic data structure that you probably won’t need.
Stacks and Queues are very simple data structures that are really variants of the List data structure. All they do is use a List with a discipline or convention that says you always place elements on one end of the List. For a Stack, you always push and pop. For a Queue, you always shift to the front, but pop from the ...