首页 > TAG信息列表 > 776

vmstat-系统整体运行状态

    procs -----------memory---------- ---swap-- -----io---- -system-- ------cpu----- r b swpd free buff cache si so bi bo in cs us sy id wa st 5 0 0 411652 2467716 444288 0 0 77824 0 2640 518 1 99 0 0 0 2 2

[AcWing 776] 字符串移位包含问题

点击查看代码 #include<iostream> #include<algorithm> using namespace std; string a, b; int main() { cin >> a >> b; if (a.size() < b.size()) swap(a, b); for (int i = 0; i < a.size(); i ++) { a = a.substr(1) +