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:
Flowchart:

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.
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
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
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