List Learners
Enter your name:
Lessons
Lesson 1
Lesson 2
Lesson 3
Help
×
Helpful Functions
addToFront(item) - Adds an item to front of LinkedList
addToEnd(item) - Adds an item to end of LinkedList
add(index, item) - Adds an item at the specified index, as long as the specified index is lower than or equal to 7
removeFront() - Removes the item at the front of the LinkedList
removeEnd() - Removes the item at the end of the LinkedList
remove(index) - Removes the item at the specified index, as long as the specified index is lower than or equal to 7
contains(item) - Returns
true
or
false
depending on if the input is in the LinkedList
clear() - Clears out the LinkedList
GeeksForGeeks
W3Schools
1.
Loading...