Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create bubbleSort.java #6

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

Hardik510
Copy link

bubble sort in java

bubble sort in java
@prince-1104
Copy link

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