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.

Java: Tips of the Day

DropElements

Removes elements in an array until the passed function returns true. Returns the remaining elements in the array.

Loop through the array, using Arrays.copyOfRange() to drop the first element of the array until the returned value from the function is true. Returns the remaining elements.

public static int[] dropElements(int[] elements, IntPredicate condition) {
    while (elements.length > 0 && !condition.test(elements[0])) {
        elements = Arrays.copyOfRange(elements, 1, elements.length);
    }
    return elements;
}

Ref: https://bit.ly/37YWqzD

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook