Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
667 Bytes
import java.util.*;
public class QueueExample {
public static void main(String[] args) {
Queue<String> locationsQueue = new LinkedList<>();
locationsQueue.add("Kolkata");
locationsQueue.add("Patna");
locationsQueue.add("Delhi");
locationsQueue.add("Gurgaon");
locationsQueue.add("Noida");
System.out.println("Queue is : " + locationsQueue);
System.out.println("Head of Queue : " + locationsQueue.peek());
locationsQueue.remove();
System.out.println("After removing Head of Queue : " + locationsQueue);
System.out.println("Size of Queue : " + locationsQueue.size());
}
}