Collections Framework in Java: RNS Institute of Technology
Collections Framework in Java: RNS Institute of Technology
Abhinav Dogra
Department of Computer science
• The List interface provides for an ordered [1] Herbert Schildt, The Complete Reference , JAVA 9 th edition. Java.util
Part 2: The Collection Framework, 498-510.
collection, for situations in which you need
[2] GeeksForGeeks, Collection in Java
precise control over where each element is https://www.geeksforgeeks.org/collections-in-java-2/
inserted. You can retrieve elements from [3] Tutorials point, Java-The Collections Framework ,
a List by their exact position. https://www.tutorialspoint.com/java/java_collections.htm
[4] Oracle,The JAVA tutorials,Intro to Collections,
• The Queue interface enables additional https://docs.oracle.com/javase/tutorial/collections/intro/index.html.
insertion, extraction, and inspection operations.
Elements in a Queue are typically ordered in on .
a FIFO basis.