Skip to content

Instantly share code, notes, and snippets.

@hakaneroztekin
Created August 23, 2019 04:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hakaneroztekin/47135a9d0249e6f3250a4113c5a71c79 to your computer and use it in GitHub Desktop.
Save hakaneroztekin/47135a9d0249e6f3250a4113c5a71c79 to your computer and use it in GitHub Desktop.
// List Interface
// We can store the ordered collection of objects. It can have duplicate values.
List <data-type> list1= new ArrayList();
List <data-type> list2 = new LinkedList();
List <data-type> list3 = new Vector();
List <data-type> list4 = new Stack();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment