pastebin - collaborative debugging tool
rovema.kpaste.net RSS


vector sort demo 001 (lambda version)
Posted by Anonymous on Tue 19th Nov 2024 13:31
raw | new post
view followups (newest first): vector sort demo 001 (lambda+capture version) by Anonymous

  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.     std::sort(v1.begin(), v1.end(),
  10.         [](std::string &a, std::string &b)
  11.         {
  12.             return (std::stoi(a) < std::stoi(b));
  13.         }
  14.     );
  15.  
  16.     std::cout << "test results:" << std::endl;
  17.  
  18.     for (auto x : v1)
  19.         std::cout << x << std::endl;
  20.  
  21.     return EXIT_SUCCESS;
  22. }

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