Skip to content

Create bubbleSort.java#6

Open
Hardik510 wants to merge 1 commit into
apna-college:mainfrom
Hardik510:patch-5
Open

Create bubbleSort.java#6
Hardik510 wants to merge 1 commit into
apna-college:mainfrom
Hardik510:patch-5

Conversation

@Hardik510

Copy link
Copy Markdown

bubble sort in java

bubble sort in java
@prince-1104

Copy link
Copy Markdown

class bubbleShort{
public static void main(String args[]){
int arr[] = {5, 4, 1, 3, 2};

    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]){
                //swap
                int temp = arr[j];
                arr[j] = arr[j+1];
                arr[j+1] = temp;
            }
        }
    }
    for(int i=0; i<arr.length; i++){
        System.out.print(arr[i] +" ");
    }

}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants