You are viewing a single comment's thread. Return to all comments →
Here is my c++ solution, you can watch the explanation here : https://youtu.be/pAWOIEQemtc
int runningTime(vector<int> arr) { int i,j; int value; int result = 0; for(i=1;i<arr.size();i++) { value=arr[i]; j=i-1; while(j>=0 && value<arr[j]) { arr[j+1]=arr[j]; j=j-1; result ++; } arr[j+1]=value; } return result; }
Seems like cookies are disabled on this browser, please enable them to open this website
Running Time of Algorithms
You are viewing a single comment's thread. Return to all comments →
Here is my c++ solution, you can watch the explanation here : https://youtu.be/pAWOIEQemtc