KimKitsuragi
KimKitsuragi
全部文章
分类
归档
标签
去牛客网
登录
/
注册
KimKitsuragi的博客
全部文章
(共28篇)
题解 | #整数奇偶排序#
#include <iostream> #include <algorithm> using namespace std; bool cmp(int a,int b){ if(a%2==1&&b%2==1) return a>b;//奇数,递减排...
2024-01-07
0
191
题解 | #特殊排序#
? #include <iostream> #include <algorithm> using namespace std; #define MAX 1000 int main() { int n; int arr[MAX]; while (cin ...
2024-01-07
0
157
题解 | #成绩排序#
#include <iostream> #include <algorithm> using namespace std; struct stu {//自定义结构体 string name; int grade; }; int descendCmp(stu a...
2024-01-07
0
194
题解 | #路径打印#
如果将vector <string> path[MAX] 定义在循环体之外,就会报内存错;写进循环体就没事。 #include <iostream> #include <string> #include <vector> #include <al...
2024-01-05
0
223
题解 | #Grading#
读清题目,按要求往下写就可以了。 //Grading 浙大 2024/1/4 //http://t.cn/E9rDPSq #include <iostream> #include <math.h> using namespace std; int main() { ...
2024-01-04
0
163
题解 | #xxx定律#
//XXX定律 浙大 2024/1/4 //http://t.cn/E937wDs #include <iostream> using namespace std; int call;//全局变量记录处理函数调用次数,即所求步数 int delNum(int n){ call++...
2024-01-04
0
197
题解 | #手机键盘#
//手机键盘 清华 2024/1/4 #include <iostream> using namespace std; int main() { string str; int len, count; int hit_wait[26] = {//数组记录每个字母...
2024-01-04
0
190
题解 | #日期类#
//日期类 北理 2024/1/4 //http://t.cn/E9RJUp4 #include <iostream> using namespace std; bool ifLeap(int year){ return (year%400==0)||(year%100!=0&a...
2024-01-04
1
297
首页
上一页
1
2
3
下一页
末页