福涂
福涂
全部文章
分类
归档
标签
去牛客网
登录
/
注册
福涂的博客
TA的专栏
60篇文章
0人订阅
计算机复试机试(王道版)
59篇文章
408人学习
浙大版《C语言程序设计第4版》
1篇文章
170人学习
全部文章
(共45篇)
题解 | 成绩排序
来自专栏
#include<stdio.h> using namespace std; #include<vector> #include<algorithm> struct student { int grade; int id; }; //改写比较规...
2026-01-27
0
42
题解 | 成绩排序
来自专栏
#include<stdio.h> using namespace std; #include<vector> #include<algorithm> //注意添加一个seq记录输入的前后顺序 struct student { int grade; ...
2026-01-27
0
51
题解 | 手机键盘
来自专栏
#include<stdio.h> #include<map> using namespace std; //计算手机9键输入法,输入一个字符串所花费时间 int main() { //定义一个集合存放字母的按键次数 map<char, int> inputT...
2026-01-27
0
46
题解 | 整数奇偶排序
来自专栏
#include<stdio.h> #include<vector> #include<algorithm> using namespace std; //修改比较规则 bool compare(int l,int r){ //不交换的情况返回真 ...
2026-01-27
0
46
题解 | Hello World for U
来自专栏
#include <stdio.h> #include<string.h> using namespace std; int main() { char str[100] = { 0 }; scanf("%s", str); i...
2026-01-22
1
57
首页
上一页
1
2
3
4
5
下一页
末页