El método Java.util.PriorityQueue.contains() se usa para verificar si un elemento específico está presente en PriorityQueue o no. Básicamente, se usa para verificar si una cola contiene algún elemento en particular o no.
Sintaxis:
Priority_Queue.contains(Object element)
Parámetros: el elemento de parámetro es del tipo PriorityQueue. Este es el elemento que debe probarse si está presente en la cola o no.
Valor devuelto: el método devuelve True si el elemento está presente en la cola; de lo contrario, devuelve False.
Los siguientes programas ilustran el método Java.util.PriorityQueue.contains():
Programa 1:
// Java code to illustrate contains() import java.util.PriorityQueue; 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("4"); queue.add("Geeks"); // Displaying the PriorityQueue System.out.println("PriorityQueue: " + queue); // Check for "Geeks" in the queue System.out.println("Does the Queue contains 'Geeks'? " +queue.contains("Geeks")); // Check for "4" in the queue System.out.println("Does the Queue contains '4'? " +queue.contains("4")); // Check if the Queue contains "No" System.out.println("Does the Queue contains 'No'? " +queue.contains("No")); } }
Producción:
PriorityQueue: [4, Geeks, To, Welcome, Geeks] Does the Queue contains 'Geeks'? true Does the Queue contains '4'? true Does the Queue contains 'No'? false
Programa 2:
// Java code to illustrate contains() 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); // Displaying the PriorityQueue System.out.println("PriorityQueue: " + queue); // Check for '15' in the queue System.out.println("Does the Queue contains '15'? " +queue.contains(15)); // Check for '2' in the queue System.out.println("Does the Queue contains '2'? " +queue.contains(2)); // Check if the Queue contains '10' System.out.println("Does the Queue contains '10'? " +queue.contains(10)); } }
Producción:
PriorityQueue: [5, 10, 30, 20, 15] Does the Queue contains '15'? true Does the Queue contains '2'? false Does the Queue contains '10'? true
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