touch fish 14
- More on harmful overuse of std::move
看不懂
- c++17引入的函数介绍 std::launder
const不可更改,但我可以洗清内存
- 剖析std::sort函数设计,避免coredump
简单的讲,sort的比较函数需要满足三个条件
- 反自反性(Irreflexivity): 对于任何 a,comp(a, a) 必须返回 false。这一条比较容易错
- 反对称性(Antisymmetry): 对于任何 a 和 b,如果 comp(a, b) 返回 true,则 comp(b, a) 必须返回 false。
- 传递性(Transitivity): 对于任何 a、b 和 c,如果 comp(a, b) 返回 true 且 comp(b, c) 返回 true,则 comp(a, c) 必须返回 true。
- 所以function里最好写简单一点,a < b这种比较好,a <= b这种就有问题. 也别搞一堆有的没得判断了,太复杂的话,会coredump
Lambda, bind(front), std::function, Function Pointer Benchmarks
Branch predictor: How many “if”s are too many? Including x86 and M1 benchmarks!
- c++14之后支持的lambda递归
1 2 3 4 5 6
auto dfs = [](auto&& self, int x) { if (x <= 0) { return 1; } return x * self(self, x - 1); };
比较怪,再套一次
1 2 3 4 5 6 7 8 9
auto dfs = [](int x) { auto f = [](auto&& f, int x) -> int { if (x <= 0) { return 1; } return x * f(f, x - 1); }; return f(f, x); };
This post is licensed under CC BY 4.0 by the author.