窝在小角落里刷题
窝在小角落里刷题
全部文章
分类
归档
标签
去牛客网
登录
/
注册
窝在小角落里刷题的博客
全部文章
(共72篇)
题解 | #小白鼠排队#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MAX_NUM = 100; //结构体保存小白鼠信息 struct Mous...
2023-01-15
0
280
题解 | #特殊排序#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MAX_NUM = 1000; /** * 特殊排序--华中科技大学 */...
2023-01-15
0
343
题解 | #成绩排序#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; struct Student { string name; int score; ...
2023-01-15
0
288
题解 | #查找#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MAX_NUM = 100; /** * 查找--北京邮电大学 * @r...
2023-01-14
0
302
题解 | #查找#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MAX_NUM = 100; /** * 线性查找 * @param ar...
2023-01-14
0
300
题解 | #整数奇偶排序#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int NUM = 10; /** * 自定义排序规则 * 1.偶数在奇数前 *...
2023-01-14
0
384
题解 | #成绩排序#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MAX_NUM = 100; struct Student { int...
2023-01-13
0
315
题解 | #排序#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MAX_NUM = 100; /** * 排序--华中科技大学 * *...
2023-01-13
0
324
题解 | #xxx定律#
#include <iostream> #include <cstdio> using namespace std; /** * XXX定律--浙江大学 * @return(756076230) */ int main() { int n; whil...
2023-01-13
0
326
题解 | #日期类#
#include <iostream> #include <cstdio> using namespace std; /* * 二维数组保存平年和闰年0~12月份对应的天数 */ int dayTable[2][13] = { {0, 31, 28, ...
2023-01-13
0
336
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页