Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created March 20, 2021 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/08aed359802ac046732dfa85fd62e08d to your computer and use it in GitHub Desktop.
Save amankharwal/08aed359802ac046732dfa85fd62e08d to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
int arr[n];
for(int i = 0; i < n; i ++){
cin>>arr[i];
}
for(int i = 1; i < n; i++){
int current = arr[i];
int j = i - 1;
while (arr[j]>current && j >= 0){
arr[j+1] = arr[j];
j--;
}
arr[j+1] = current;
}
for(int i = 0; i < n; i++){
cout<<arr[i]<<" ";
}cout<<endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment