How to delete many elements from a linkedList?


Levels of difficulty: / perform operation:

JAVA Program

import java.util.*;
public class Main {
	public static void main(String[] args) {
		LinkedList<String> lList = new LinkedList<String>();
		lList.add("1");
		lList.add("8");
		lList.add("6");
		lList.add("4");
		lList.add("5");
		System.out.println(lList);
		lList.subList(2, 4).clear();
		System.out.println(lList);
	}
}

Output

[one, two, three, four, five]
[one, two, three, Replaced, five]