diff --git a/std:sort b/std:sort new file mode 100644 index 0000000..a3d3d43 --- /dev/null +++ b/std:sort @@ -0,0 +1,22 @@ +// C++ program to demonstrate default behaviour of +// sort() in STL. +#include +using namespace std; + +int main() +{ + int arr[] = { 1, 5, 8, 9, 6, 7, 3, 4, 2, 0 }; + int n = sizeof(arr) / sizeof(arr[0]); + + /*Here we take two parameters, the beginning of the + array and the length n upto which we want the array to + be sorted*/ + sort(arr, arr + n); + + cout << "\nArray after sorting using " + "default sort is : \n"; + for (int i = 0; i < n; ++i) + cout << arr[i] << " "; + + return 0; +}