Método LinkedList contains() en Java

El método Java.util.LinkedList.contains() se usa para comprobar si un elemento está presente en una LinkedList o no. Toma el elemento como parámetro y devuelve True si el elemento está presente en la lista.

Sintaxis: 

LinkedList.contains(Object element)

Parámetros: el elemento de parámetro es de tipo LinkedList. Este parámetro se refiere al elemento cuya ocurrencia se necesita verificar en la lista.

Valor devuelto: el método devuelve True si el elemento está presente en LinkedList; de lo contrario, devuelve False.

El siguiente programa ilustra el método Java.util.LinkedList.contains():  

Java

// Java code to illustrate boolean contains()
import java.io.*;
import java.util.LinkedList;
 
public class LinkedListDemo {
   public static void main(String args[]) {
 
      // Creating an empty LinkedList
      LinkedList<String> list = new LinkedList<String>();
 
      // Use add() method to add elements in the list
      list.add("Geeks");
      list.add("for");
      list.add("Geeks");
      list.add("10");
      list.add("20");
 
      // Output the list
      System.out.println("LinkedList:" + list);
 
      // Check if the list contains "Hello"
      System.out.println("\nDoes the List contains 'Hello': "
                                      + list.contains("Hello"));
 
      // Check if the list contains "20"
      System.out.println("Does the List contains '20': "
                                         + list.contains("20"));
       
      // Check if the list contains "Geeks"
      System.out.println("Does the List contains 'Geeks': "
                                      + list.contains("Geeks"));
 
   }
}
Producción: 

LinkedList:[Geeks, for, Geeks, 10, 20]

Does the List contains 'Hello': false
Does the List contains '20': true
Does the List contains 'Geeks': 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *