Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Collection, ArrayList Exercises: Swap two elements in an array list

Java Collection, ArrayList Exercises: Exercise-14 with Solution

Write a Java program of swap two elements in an array list.

Pictorial Presentation:

Java Collection, ArrayList Exercises: Swap two elements in an array list

Sample Solution:-

Java Code:

import java.util.ArrayList;
import java.util.Collections;
  public class Exercise14 {
  public static void main(String[] args) {
   ArrayList<String> c1= new ArrayList<String>();
          c1.add("Red");
          c1.add("Green");
          c1.add("Black");
          c1.add("White");
          c1.add("Pink");

          System.out.println("Array list before Swap:");
          for(String a: c1){
          System.out.println(a);
        }
          //Swapping 1st(index 0) element with the 3rd(index 2) element
         Collections.swap(c1, 0, 2);
          System.out.println("Array list after swap:");
          for(String b: c1){
          System.out.println(b);
         }
     }
}

Sample Output:

Array list before Swap:                                                
Red                                                                    
Green                                                                  
Black                                                                  
White                                                                  
Pink                                                                   
Array list after swap:                                                 
Black                                                                  
Green                                                                  
Red                                                                    
White                                                                  
Pink 

Flowchart:

Flowchart: Swap two elements in an array list.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Compare two array lists.
Next: Join two array lists.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe