El método Java.util.PriorityQueue.size() se usa para obtener el tamaño de PriorityQueue o la cantidad de elementos presentes en PriorityQueue.
Sintaxis:
Priority_Queue.size()
Parámetros: Este método no toma ningún parámetro.
Valor devuelto: el método devuelve el tamaño o la cantidad de elementos presentes en PriorityQueue.
Los siguientes programas ilustran el método Java.util.PriorityQueue.size():
Programa 1:
// Java code to illustrate size() import java.util.*; public class PriorityQueueDemo { public static void main(String args[]) { // Creating an empty PriorityQueue PriorityQueue<String> queue = new PriorityQueue<String>(); // Use add() method to add elements into the Queue queue.add("Welcome"); queue.add("To"); queue.add("Geeks"); queue.add("For"); queue.add("Geeks"); // Displaying the PriorityQueue System.out.println("PriorityQueue: " + queue); // Displaying the size of the PriorityQueue System.out.println("The size of the queue is: " + queue.size()); } }
Producción:
PriorityQueue: [For, Geeks, To, Welcome, Geeks] The size of the queue is: 5
Programa 2:
// Java code to illustrate size() import java.util.*; public class PriorityQueueDemo { public static void main(String args[]) { // Creating an empty PriorityQueue PriorityQueue<Integer> queue = new PriorityQueue<Integer>(); // Use add() method to add elements into the Queue queue.add(10); queue.add(15); queue.add(30); queue.add(20); queue.add(5); queue.add(18); // Displaying the PriorityQueue System.out.println("PriorityQueue: " + queue); // Displaying the size of the PriorityQueue System.out.println("The size of the queue is: " + queue.size()); } }
Producción:
PriorityQueue: [5, 10, 18, 20, 15, 30] The size of the queue is: 6
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA