Advertisement
Shailrshah

Sorting Elements in a Vector

Oct 30th, 2013
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.94 KB | None | 0 0
  1. import java.util.Scanner;
  2. import java.util.Vector;
  3. class Student{
  4.     int roll_no;
  5.     String name;
  6. }
  7. class SortVec{
  8.     public static void main(String[] args){
  9.         Scanner sc = new Scanner(System.in);
  10.         Vector <Student> v = new Vector();
  11.         System.out.println("Enter 5 Entries.");
  12.         for(int i = 0; i < 5; i++){
  13.             Student s = new Student();
  14.             System.out.print("roll no: ");
  15.             s.roll_no = sc.nextInt();
  16.             System.out.print("name: ");
  17.             s.name = sc.next();
  18.             v.add(s);
  19.         }
  20.         for(int i = 0; i<5; i++){
  21.             int j, temp1 = v.elementAt(i).roll_no;
  22.             String temp2 = v.elementAt(i).name;
  23.             for(j = i-1; j>=0 && temp1 < v.elementAt(j).roll_no; j--){
  24.                 v.elementAt(j+1).roll_no = v.elementAt(j).roll_no;
  25.                 v.elementAt(j+1).name = v.elementAt(j).name;
  26.             }
  27.             v.elementAt(j+1).roll_no = temp1;
  28.             v.elementAt(j+1).name = temp2;
  29.         }
  30.         for(int i = 0; i < 5; i++){
  31.             System.out.println(v.elementAt(i).roll_no + " " + v.elementAt(i).name);
  32.         }
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement