Skip to content

Instantly share code, notes, and snippets.

@dazfuller
Created December 16, 2011 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dazfuller/1486183 to your computer and use it in GitHub Desktop.
Save dazfuller/1486183 to your computer and use it in GitHub Desktop.
Ignoring the Voices: C++11 Example - Lambda Sorting
#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
void PrintList(const vector<int>& list)
{
for (auto i : list)
{
cout << i << " ";
}
cout << endl;
}
int main(int argc, char** argv)
{
vector<int> myList = { 4, 1, 6, 2, 13 };
PrintList(myList);
sort(myList.begin(), myList.end(), [](int x, int y) -> bool { return x < y; });
PrintList(myList);
sort(myList.begin(), myList.end(), [](int x, int y) -> bool { return x > y; });
PrintList(myList);
}
@dazfuller
Copy link
Author

Compiled as follows with GCC 4.6.1 ib Ubuntu 11.10

g++ -Wall -Werror -std=c++0x -o lambda_sort lambda_sort.cpp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment