This is a place where students can begin to learn the basics of data structure written in Java.
It is based off the "Algorithms, 4th Edition website".
Implement the queue and the stack abstract data types in Java. These data structures will use Java generics to be able to handle items that are all of the same type. Use good test driven development flow to help with the development of these data structures.
For the queue, you will implement the following methods:
- constructor that takes no arguments and creates an empty queue
- enqueue(item) - adds an item to the end of queue
- dequeue - returns an item from the front of queue
- isEmpty - tells you if the queue is empty or not
- size - tells you how many items are in the queue
For the stack, you will implement the following methods:
- constructor that takes no arguments and creates an empty stack
- push(item) - adds an item to the stack
- pop - returns an item from the stack
- isEmpty - tells you if the stack is empty or not
- size - tells you how many items are in the stack
Implement the Iterable interface. The iterator should return the elements in the order that they would be dequeued/popped from their respective data structures.
If you implemented these data structures using an array internally, re-implement using a linked list internally. Also try it without using the built in LinkedList class from Java.
- Install a Java 8 development environment
- Fork
- Clone
- Generate the IntelliJ project files using
gradle idea. - Turn on TravisCI for the fork by visiting https://travis-ci.org/profile/, clicking the "Sync now" button and scrolling down to find the repository to build.
- Create a new branch for your work using
git checkout -b v1 - Implement specs and code. To run the tests, use
gradle testor run them from within IntelliJ. - Push using
git push -u origin v1
This warmup can be completed multiple times to increase your comfort level with the material. To work on this from scratch, you can:
- Add an upstream remote that points to the original repo
git remote add upstream git@github.com:gSchool/data-structures-java.git - Fetch the latest from the upstream remote using
git fetch upstream - Create a new branch from the master branch of the upstream remote
git checkout -b v2 upstream/master - Implement specs and code
- Push using
git push -u origin v2
Each time you do the exercise, create a new branch. For example the 3rd time you do the exercise the branch name will be v3 instead of v2.