Answers for "display queue in java"

31

java queue

import java.util.*;

Queue<Integer> queue = new LinkedList<Integer>();
// use non-primative types when constructing

// to add a value to the back of queue:
queue.add(7);

// to remove and return front value:
int next = queue.remove();

// to just return front value without removing:
int peek = queue.peek();
Posted by: Guest on March-16-2020
0

print queue in java

Queue<Something> yourQueue=new LinkedList<>();//or similar
System.out.println(yourQueue);//print it in a single line

//print manually
for(Something elem:yourQueue){
	System.out.println(elem);
}
Posted by: Guest on April-15-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language