2023-03-31 算法学习——c++ lamda
2024-02-23 本文已影响0人
Lovevivi
auto check = [&] (int x) -> bool {};
function<bool(int, int)> cmp = [](int a, int b) {return a > b;};
auto check = [&] (int x) -> bool {};
function<bool(int, int)> cmp = [](int a, int b) {return a > b;};