rainman_
rainman_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
rainman_的博客
全部文章
(共127篇)
题解 | #查找学生信息#
#include <iostream> #include <string> #include <cstdio> #include <algorithm> using namespace std; struct Student{ //学生的结构体 ...
2023-02-25
0
277
题解 | #反序输出#
#include <iostream> #include <string> using namespace std; char arr[4] ; int main() { while (scanf("%s", arr) != EOF) { for ...
2023-02-25
0
235
题解 | #查找#采用map映射
#include <cstdio> #include <algorithm> //加入map #include <map> using namespace std; //进行元素映射 map<int, int> mapping; int arr[20...
2023-02-24
0
231
题解 | #查找#二分
#include <cstdio> #include <algorithm> using namespace std; int arr[100]; /** n是数组长度 key为要找的值 */ bool binarySearch(int n, int key...
2023-02-24
0
304
题解 | #找x#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; int main() { int n;//数组大小 int arr[2000]; ...
2023-02-24
0
264
题解 | #成绩排序#
#include <iostream> #include <algorithm> #include <string> using namespace std; struct Student{ char name[50]; int score; ...
2023-02-24
0
259
题解 | #成绩排序#运用结构体排序
#include <iostream> #include <algorithm> using namespace std; struct Student{ int id; //学号 int score; //分数 }; bool compare(Stude...
2023-02-24
0
230
题解 | #整数奇偶排序#
#include <cstdio> #include <iostream> #include <algorithm> using namespace std; //奇数放左边,偶数放右边 bool isOdd(int left, int right){ ...
2023-02-24
0
267
题解 | #排序#sort函数(start, end)
#include <iostream> #include <algorithm> using namespace std; //KY210 排序 int main() { int n; int arr[101]; while (scanf("%d", ...
2023-02-24
0
242
题解 | #手机键盘#
#include <iostream> #include <cstdio> #include <map> using namespace std; //KY6 int main() { //某个字母需要输入多长时间 map<char, int...
2023-02-23
0
352
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页