摘要:
简介 多线程的同步是所有的公司都会使用的. 先将各种语言的放上来 code #include <iostream> #include <thread> #include <mutex> #include <string> using namespace std; string g; mutex mt 阅读全文
摘要:
简介 找规律, 而不是盲目转弯, 这样太慢. code 参考了题解 #include <iostream> #include <vector> using namespace std; int a[101][101]={0}; int main() { int n; vector<int> b; w 阅读全文
摘要:
简介 使用回溯 + 暴力 code #include <iostream> #include <string> #include <map> #include <vector> using namespace std; bool flag = false; char v[4]={'+', '-', 阅读全文
摘要:
简介 使用回溯算法. 其实回溯算法属于暴力算法. 进行一定的减枝算法即可. 这里要使用弱检查, 全局flag 进行退出. code #include <iostream> #include <vector> #include <set> #include <map> using namespace 阅读全文