Hello everybody I just want to ask if Singley Linked List and Double Linked List is implemented in the java built in packages?
List
Collapse
X
-
Specs for LinkedList sayOriginally posted by mia023Another thing is how do we sort elements in a linked list
For the sorting part, have a look at the Collections.sor t methodOriginally posted by API SpecsAll of the operations perform as could be expected for a doubly-linked list. Operations that index into the list will traverse the list from the begining or the end, whichever is closer to the specified index.Comment
Comment