Skip to content

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