05 2021 档案

摘要:C++ stdlower_bound and stdset::lower_bound 在set中使用stdlower_bound发现非常耗时,而使用stdsetlower_bound发现速度明显提升。 该文章解释说明了这两个的区别,在set中使用stdset::lower_bound才是最好的选择。 阅读全文
posted @ 2021-05-09 16:13 jadelemon 阅读(100) 评论(0) 推荐(0)
摘要:记 \(\oplus\) 为异或运算,异或运算满足以下性质: 1、\(x \oplus x = 0\) 2、\(x \oplus y = y \oplus x(交换律)\) 3、\((x \oplus y) \oplus z = x \oplus (y \oplus z) (结合律)\) 4、\(x 阅读全文
posted @ 2021-05-07 08:48 jadelemon 阅读(740) 评论(0) 推荐(0)