w3resource

Java: Replace an element in a linked list

Java Collection, LinkedList Exercises: Exercise-26 with Solution

Write a Java program to replace an element in a linked list.

Sample Solution:-

Java Code:

import java.util.LinkedList;
import java.util.Collections;
  public class Exercise18 {
  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);
          // Replacing 2nd element with new value
          c1.set(1, "Orange");
          System.out.println("The value of second element changed.");
          System.out.println("New linked list: " + c1);
   }
}

Sample Output:

Original linked list: [Red, Green, Black, White, Pink]                 
The value of second element changed.                                   
New linked list: [Red, Orange, Black, White, Pink] 

Pictorial Presentation:

Java Collection Linked-list: Replace an element in a linked list.

Flowchart:

Flowchart: Replace an element in a linked list

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Test an linked list is empty or not.
Next: Append the specified element to the end of a hash set.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.