Advertisement
Rolandz

Untitled

May 1st, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. col.sort();
  2. for (itr = col.begin(); itr != col.end(); itr++) {
  3.  
  4. cout << **itr;
  5. }
  6.  
  7. col.sort(compareFunList);
  8. for (itr = col.begin(); itr != col.end(); itr++) {
  9.  
  10. cout << **itr;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement