-
Notifications
You must be signed in to change notification settings - Fork 0
/
sorting.java
36 lines (33 loc) · 1.02 KB
/
sorting.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package javaPractice;
import java.util.*;
public class sorting{
public static void printArr(int arr[]){
for(int i = 0; i < arr.length; i++){
System.out.print(arr[i] + " ");
}
System.out.println();
}
public static void bubbleSort(int arr[]){
for(int i = 0; i < arr.length - 1; i++){
for(int j = 0; j < arr.length - 1 - i; j++){
if(arr[j] > arr[j+1]){
int temp = arr[j];
arr[j] = arr[j+1];
arr[j+1] = temp;
}
}
}
}
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
System.out.println("Enter size of Array");
int size = sc.nextInt();
int arr[] = new int[size];
for(int i = 0; i < size; i++){
System.out.println("Enter the " + (i+1) + " element");
arr[i] = sc.nextInt();
}
bubbleSort(arr);
printArr(arr);
}
}