随笔分类 - 总结
对于某些事物的总结,不限于算法题
摘要:精简版: #include <algorithm> #include <cmath> #include <cstring> #include <iostream> #include <map> #include <queue> #include <set> #include <stack> #inc
阅读全文
摘要:## 笔记本wifi突然不能用了 右下角没有wlan的开关,打开设备管理器,网卡那里是黄色感叹号。 我这里遇到的是Intel ac9462(型号可能记错)网卡,错误代码为10。 大神说很可能是网卡上的天线接口不良了,建议拆开后盖,把2根天线拔下来重插一下。 来管理运行。 ## 安装csgo服务端 请参考:[根据lgsm官网指引进行安装](https://linuxgsm.com/servers/csgoserver/) 注意,过程中如果
阅读全文
摘要:子集枚举之二进制法(好土的名字) A中元素 1 2 3 4 5 二进制 在中的出现情况 1 0 1 1 1 11101 在中的出现情况 1 0 0 1 1 11001 在中的出现情况 0 0 1 0 0 00100 在中的出现情况 0 1 1 0 0 0011
阅读全文