Skip to content

Instantly share code, notes, and snippets.

@shameemreza
Created June 5, 2018 08:58
Show Gist options
  • Save shameemreza/ffac386a312ffcc75aa95472dbef5cab to your computer and use it in GitHub Desktop.
Save shameemreza/ffac386a312ffcc75aa95472dbef5cab to your computer and use it in GitHub Desktop.
for (int i=1; i<=n; i++) {
for (int j=i+1; j<=n; j++) {
if(num[i]>num[j]){
//swap is inside algorithm header.
swap(num[i], num[j]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment