-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Completed ArrayIntList and LinkedIntList #20
base: main
Are you sure you want to change the base?
Conversation
… and indexOf methods for searching elements, and isEmpty and size methods for checking ArrayIntList size or if empty
…ethods for searching values, and isEmpty and size methods for checking ArrayIntList size or if empty
…dded Node class, private fields and constructor
…ddBack, removeBack
- removeFront, removeBack and remove methods for removing elements. - get method that returns element at specified index. - contains and indexOf methods for searching elements. - isEmpty and size methods for checking IntList status. - clear method for emptying list.
- removeFront, removeBack and remove methods for removing elements. - get method that returns element at specified index. - contains and indexOf methods for searching elements. - isEmpty and size methods for checking IntList status. - clear method for emptying list.
- addFront, addBack and add method for adding elements. - removeFront, removeBack and remove methods for removing elements. - get method that returns value at specified index.
…nted DoublyLinkedIterator for DoublyLinkedIntList
Revised LinkedIntList and LinkedIntListTest, the JUnit tests works now and I was able to make the necessary changes to my LinkIntList. Completed DoublyLinkIntList, only have one issue that I couldn't figure out with the remove() method. |
All JUnit Tests for DoublyLinkIntList passed. Just a minor mistake on the remove() test. My code is ready for review and I would greatly appreciate your feedback. Thank you! |
ArrayIntList is ready for review but I'm having issues running JUnit tests for the LinkIntList. I can't seem to run the debugger either so I was unable to test it and make necessary changes. Your feedback is greatly appreciated, thank you!