Find the minimum element of a Vector in Java


The minimum element of a Vector can be obtained using the java.util.Collections.min() method. This method contains a single parameter i.e. the Vector whose minimum element is determined and it returns the minimum element from the Vector.

A program that demonstrates this is given as follows −

Example

 Live Demo

import java.util.Collections;
import java.util.Vector;
public class Demo {
   public static void main(String args[]) {
      Vector vec = new Vector();
      vec.add(7);
      vec.add(3);
      vec.add(9);
      vec.add(5);
      vec.add(8);
      System.out.println("The Vector elements are: " + vec);
      System.out.println("The minimum element of the Vector is: " + Collections.min(vec));
   }
}

The output of the above program is as follows −

The Vector elements are: [7, 3, 9, 5, 8]
The minimum element of the Vector is: 3

Now let us understand the above program.

The Vector is created. Then Vector.add() is used to add the elements to the Vector. The vector is displayed. Collections.min() is used to find the minimum element of the Vector and that is displayed. A code snippet which demonstrates this is as follows −

Vector vec = new Vector();
vec.add(7);
vec.add(3);
vec.add(9);
vec.add(5);
vec.add(8);
System.out.println("The Vector elements are: " + vec);
System.out.println("The minimum element of the Vector is: " + Collections.min(vec));

Updated on: 30-Jun-2020

316 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements