Leetcode101
Notes for LeetCode 101 - A LeetCode Grinding Guide 贪心 C++ Notes Lambda function Refer here #include <algorithm> #include <cmath> void abssort(float* x, unsigned n) { std::sort(x, x + n, // Lambda expression begins [](float a, float b) { return (std::abs(a) < std::abs(b)); } // end of lambda expression ); } 下图显示了 lambda 语法的各个部分: capture 子句(在 C++ 规范中也称为 Lambda 引导。) 参数列表(可选)。 (也称为 Lambda 声明符) mutable 规范(可选)。 exception-specification(可选)。 trailing-return-type(可选)。 Lambda 体。