w3resource

Java: Test an linked list is empty or not

Java Collection, LinkedList Exercises: Exercise-25 with Solution

Write a Java program to check if a linked list is empty or not.

Sample Solution:-

Java Code:

import java.util.LinkedList;
import java.util.Collections;
  public class Exercise25 {
  public static void main(String[] args) {
          LinkedList<String> c1= new LinkedList<String>();
          c1.add("Red");
          c1.add("Green");
          c1.add("Black");
          c1.add("White");
          c1.add("Pink");
          System.out.println("Original linked list: " + c1);
          System.out.println("Check the above linked list is empty or not! "+c1.isEmpty());
          c1.removeAll(c1);
          System.out.println("Linked list after remove all elements "+c1);   
          System.out.println("Check the above linked list is empty or not! "+c1.isEmpty());
   }
}

Sample Output:

Original linked list: [Red, Green, Black, White, Pink]                 
Check the above linked list is empty or not! false                     
Linked list after remove all elements []                               
Check the above linked list is empty or not! true 

Pictorial Presentation:

Java Collection Linked-list: Test an linked list is empty or not.

Flowchart:

Flowchart: Test an linked list is empty or not

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Compare two linked lists.
Next: Replace an element in a linked list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/collection/java-collection-linked-list-exercise-25.php