LinkedLists
This page contains a description of LinkedLists
LinkedList features
- LinkedLists are auto sizing arrays that can store objects of any kind
- Using .add on a LinkedList object will add a new element while also increasing the size if need
- The programer can also use .add to add the element at any index within their LinkedList
- Using .get will allow the programer to access any element within the LinkedList
- Using .remove will allow the programer to remove an element at a certain index within the LinkedList
- More information on LinkedLists