积累
MR_xiao11
这个作者很懒,什么都没留下…
展开
-
scanf读入 %c注意事项
scanf %c注意细节原创 2023-03-12 11:24:45 · 274 阅读 · 0 评论 -
<枚举>P4759 [CERC2014]Sums
枚举算法题目1原创 2022-12-08 11:08:39 · 107 阅读 · 0 评论 -
递归递推题目整理
题目整理原创 2022-06-25 11:21:58 · 165 阅读 · 0 评论 -
字符串读入问题
#include <bits/stdc++.h>using namespace std;int main(){ char a[5],c[6]; string b; gets(c);//可以将空格读入,但在算法竞赛中不安全,建议不适用 scanf("%[^\n]s",a);//可以将空格读入,直到换行结束 getline(cin,b);//可以将string类型的空格读入,直到换行为止 ,较慢 cout<<a<<endl<<b; retur原创 2022-04-01 19:46:46 · 70 阅读 · 0 评论 -
队列queue与struct
当需要对struct入队时,可以使用如下格式方法入队struct node {int num;int step;};queueq;q.push((node){a,0}); \\入队node t=q.front() ;q.pop();\\调取队头即可直接使用队头数据了原创 2021-08-07 16:29:54 · 627 阅读 · 0 评论