Completed ArrayIntList and LinkedIntList#20
Open
dhysdrn wants to merge 25 commits into
Open
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
Author
|
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. |
Author
|
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! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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!