Contamos con el hallazgo a este apuro, al menos eso pensamos. Si continuas con dudas dínoslo, que sin dudarlo te responderemos
Ejemplo 1: cola java
importjava.util.*;Queue<Integer> queue =newLinkedList<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();
Ejemplo 2: queue.poll() en java
//prints the head and deletes the head.
q=[10,20,30]int n=q.poll();//returns 10 q=[20,30]int m=q.poll();//returns 20 q=[30]
Aquí tienes las comentarios y calificaciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)