Prerequisite: ArrayList in Java
Given an ArrayList, the task is to remove all elements of the ArrayList in Java.
Examples:
Input: ArrayList = [1, 2, 3, 4] Output: ArrayList = [] Input: ArrayList = [12, 23, 34, 45, 57, 67, 89] Output: ArrayList = []
- Using clear() method:
Syntax:
collection_name.clear();
Code of clear() method:
public void clear() { for (int i = 0; i < size; i++) list[i] = null; size = 0; }Below is the implementation of the above approach:
// Java Program for remove all elements ArrayList// Using clear() methodÂÂ// import ArrayList packageimportjava.util.ArrayList;ÂÂpublicclassGFG {   Â// main method   Âpublicstaticvoidmain(String[] args)   Â{       Â// create empty ArrayList       ÂArrayList<String> list =newArrayList<>();       Â// Adding elements of list       Âlist.add("Geeks");       Âlist.add("for");       Âlist.add("Geeks");       Âlist.add("Gaurav");       Â// printing initial value ArrayList       ÂSystem.out.println("ArrayList: "+ list);       Â// print size of ArrayList       ÂSystem.out.println("Size of ArrayList = "                          Â+ list.size());       Â// remove all elements using clear() method       Âlist.clear();       Â// printing ArrayList       ÂSystem.out.println("\nAfter clear\n\n"                        Â+"ArrayList: "+ list);       Â// print size of ArrayList after clear list       ÂSystem.out.println("Size of ArrayList = "                          Â+ list.size());   Â}}Output:ArrayList: [Geeks, for, Geeks, Gaurav] Size of ArrayList = 4 After clear ArrayList: [] Size of ArrayList = 0
Time Complexity: O(N)
- Using removeAll() method
Syntax:
collection_name.removeAll(collection_name);
Code of removeAll() method:
public boolean removeAll(Collection list) { boolean isModi = false; Iterator ite= iterator(); while (ite.hasNext()) { if (list.contains(ite.next())) { ite.remove(); isModi = true; } } return isModi; }Below is the implementation of the above approach:
// Java Program for remove all elements ArrayList// Using removeAll() methodÂÂ// import ArrayList packageimportjava.util.ArrayList;ÂÂpublicclassGFG {   Â// main method   Âpublicstaticvoidmain(String[] args)   Â{       Â// create empty ArrayList       ÂArrayList<String> list =newArrayList<>();       Â// Adding elements of list       Âlist.add("Geeks");       Âlist.add("for");       Âlist.add("Geeks");       Âlist.add("Gaurav");       Â// printing initial value ArrayList       ÂSystem.out.println("ArrayList: "+ list);       Â// print size of ArrayList       ÂSystem.out.println("Size of ArrayList = "                          Â+ list.size());       Â// remove all elements using clear() method       Âlist.removeAll(list);       Â// printing ArrayList       ÂSystem.out.println("\nAfter clear\n\n"                        Â+"ArrayList: "+ list);       Â// print size of ArrayList after clear list       ÂSystem.out.println("Size of ArrayList = "                          Â+ list.size());   Â}}Output:ArrayList: [Geeks, for, Geeks, Gaurav] Size of ArrayList = 4 After clear ArrayList: [] Size of ArrayList = 0
Time Complexity: O(N^2)
