DS Implementation – LinkList, ArrayList, HashMap & Stack
LinkList Methods add(E e)Appends the specified element to the end of this list. addAll(Collection<? extends E> c)Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection’s iterator. clear()Removes all of the elements from this list. clone()Returns a shallow copy of this LinkedList. contains(Object o)Returns true if …
DS Implementation – LinkList, ArrayList, HashMap & Stack Read More »