()
| 88 | |
| 89 | //display function |
| 90 | void display() |
| 91 | { |
| 92 | sort(); |
| 93 | System.out.print("Elements in array:- \n"); |
| 94 | for(int i=0;i<=lastIndex;i++) |
| 95 | { |
| 96 | System.out.print(arr[i] + " "); |
| 97 | } |
| 98 | System.out.println(); |
| 99 | } |
| 100 | |
| 101 | //function to sort the incoming elements |
| 102 | void sort() |