Advertisement
SkyHawk

C++ stable_sort

Jul 6th, 2011
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. #include <algorithm>
  2. using namespace std;
  3.  
  4. void cppStableSort(int* a,int l)
  5. {
  6.     stable_sort(a,a+l);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement