We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 210b3dc commit dba0fd5Copy full SHA for dba0fd5
5.quick_sort.cpp
@@ -41,7 +41,7 @@ int main()
41
start = clock();
42
quickSort(arr, 0, N - 1);
43
end = clock();
44
- cout << "Time taken for insertion sort: " << ((float)(end - start)) / CLOCKS_PER_SEC << " sec \n";
+ cout << "Time taken for quick sort: " << ((float)(end - start)) / CLOCKS_PER_SEC << " sec \n";
45
46
cout << "Sorted array: " << endl;
47
for (int i = 0; i < N; i++)
0 commit comments