pastebin - collaborative debugging tool
rovema.kpaste.net RSS


vector sort demo 001 (lambda+capture version)
Posted by Anonymous on Tue 19th Nov 2024 13:50
raw | new post
modification of post by Anonymous (view diff)

  1. #include <algorithm>
  2. #include <vector>
  3. #include <iostream>
  4.  
  5. int main(int ac, char *av[])
  6. {
  7.     std::vector<std::string> v1{ "13", "17", "1", "2", "3", "5", "7", "11" };
  8.  
  9.     bool sortmode = false;
  10.  
  11.     std::sort(v1.begin(), v1.end(),
  12.         [&](std::string &a, std::string &b)
  13.         {
  14.             return (sortmode?(std::stoi(a) < std::stoi(b)):(std::stoi(a) >= std::stoi(b)));
  15.         }
  16.     );
  17.  
  18.     std::cout << "test results:" << std::endl;
  19.  
  20.     for (auto x : v1)
  21.         std::cout << x << std::endl;
  22.  
  23.     return EXIT_SUCCESS;
  24. }

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at