已注销
已注销
全部文章
分类
归档
标签
去牛客网
登录
/
注册
已注销的博客
TA的专栏
22篇文章
0人订阅
考研复试机试
22篇文章
202人学习
全部文章
(共28篇)
题解 | #小白鼠排队#
来自专栏
#include <iostream> #include <cstdio> #include <string> #include <algorithm> using namespace std; const int MAXN=100; struct ...
2024-03-25
0
143
题解 | #整数奇偶排序#
来自专栏
#include <iostream> #include <cstdio> #include <algorithm> #include <vector> using namespace std; const int MAXN=10; int ar...
2024-03-25
0
169
题解 | #特殊排序#
来自专栏
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MAXN=1000; int arr[MAXN]; int main(){ ...
2024-03-25
0
158
题解 | #成绩排序#
来自专栏
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; const int MAXN = 100; struct Student { int id...
2024-03-25
0
146
题解 | #日期类#
来自专栏
#include <iostream> #include <cstdio> using namespace std; // bool isLeap(int year){ // if(year%400==0||year%4==0&&year%100!...
2024-03-25
0
172
题解 | #Day of Week#
来自专栏
#include <cmath> #include <iostream> #include <cstdio> #include <string> using namespace std; const int base_year = 2000; con...
2024-03-24
0
143
题解 | #二叉树遍历#
来自专栏
#include <iostream> #include <cstdio> #include <string> using namespace std; struct TreeNode { char data; TreeNode* leftCh...
2024-03-23
0
146
题解 | #Old Bill#
来自专栏
#include <iostream> #include <cstdio> using namespace std; int main(){ int n,x,y,z; while(scanf("%d",&n)!=EOF){ ...
2024-03-20
0
146
题解 | #对称平方数1#
来自专栏
#include <iostream> #include <cstdio> int Reverse(int x) { int revx = 0; while (x != 0) { revx = revx * 10 + x % 10; ...
2024-03-20
0
145
题解 | #反序数#
来自专栏
#include <iostream> #include <cstdio> using namespace std; int Reverse(int i){ int reverse=0; while (i>0){ reverse=re...
2024-03-20
0
123
首页
上一页
1
2
3
下一页
末页