Skip to content

Instantly share code, notes, and snippets.

@zainulhasan
Last active August 29, 2015 14:26
Show Gist options
  • Save zainulhasan/8cce5f089ab1e024eaed to your computer and use it in GitHub Desktop.
Save zainulhasan/8cce5f089ab1e024eaed to your computer and use it in GitHub Desktop.
/******************************
bubbleSort.cpp
Auther:Syed Zain Ul hasan
*****************************/
#include <iostream>
using namespace std;
int bubble_sort(int arr[],int n){
for(int i=0;i<n;i++)
for(int j=0;j<n-1;j++)
if(arr[j]>arr[j+1]){ //accending order
swap(arr[j],arr[j+1]);
}
}
int main() {
int arr[10]={5,8,79,9,87,98,7,2,5,4};
bubble_sort(arr,10);//sorting
//now print array
for(int i=0;i<10;i++)
cout<<arr[i]<<" ";
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment