std
-
【C++ 11 | thread】std::recrisive_mutex
std::recursive_mutex 1. 递归锁: Defined in header <mutex> class recursive_mutex; recur…
-
C++——编译安装boost库
Trend 12:17:14安装 boost到默认目录./bootstrap.sh —-with-libraries=all —-with-python=python3 —-p…
-
基础算法 786.第k个数
代码模板 #include<iostream> using namespace std; const int N = 1e6+10; int a[N]; void qu…
-
基础算法 787.归并排序
代码模板 #include<iostream> using namespace std; const int N = 1e6 + 10; int n; int q[N]…