Last active
August 29, 2015 14:26
-
-
Save zainulhasan/8cce5f089ab1e024eaed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/****************************** | |
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