Assignment X
Before moving on we are going to finish off testing your understanding of data structures.
Write a quick Javascript implementation of a Stack. The three methods this class should have are pop, push, and peek.
Write a quick Javascript implementation of a Queue. The three methods this class should have are enqueue, dequeue, and peek.
What is a Map? What is a Hashmap? If arrays store items by a numbered index, how do Maps store items by an arbitrary object key? How does this work?
What is the difference between Interface and Implementation? Is a List an interface or an implementation? What about a Map? What about a HashMap? What is the importance of these concepts in writing maintainable/flexible code?