2331-信息学奥赛一本通T1180-分数线划定 摘要:解题思路:随便什么排序都能用参考代码:(这里我用冒泡)#include<iostream> using namespace std; struct xx{ int a; int b; }…… 题解列表 2022年08月06日 0 点赞 0 评论 611 浏览 评分:0.0
蓝桥杯2018年第九届真题-递增三元组(很简洁易懂) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N = 1e5 + 7;int a[N];int b[N];in…… 题解列表 2022年08月06日 0 点赞 0 评论 437 浏览 评分:8.0
蓝桥杯2015年第六届真题-打印大X(C++) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m, n; cin >> m >> n;…… 题解列表 2022年08月06日 0 点赞 0 评论 609 浏览 评分:0.0
1035: [编程入门]自定义函数之字符类型统计 摘要: ```cpp #include #include using namespace std; int main() { string str; int cn…… 题解列表 2022年08月06日 0 点赞 0 评论 643 浏览 评分:9.9
1743: 大整数排序 (string数组,sort自定义) 摘要:```cpp #include using namespace std; string num[10005];//利用string进行大数存储 int n; bool cmp(string …… 题解列表 2022年08月06日 0 点赞 0 评论 524 浏览 评分:0.0
C# 2021: 坐标排序 摘要:```cpp #include using namespace std; struct fun { int x; int y; int z; }s[10000]…… 题解列表 2022年08月06日 0 点赞 0 评论 943 浏览 评分:0.0
SinzoL--题解 1676: 数据结构-链表的基本操作 摘要:####好久没写了,今天试着写一下 ####我是靠自己的理解来写的,所以极有可能会出现一些时候处理得复杂了或不规范的情况 我们先来定义一下所需函数: ```cpp void show(note…… 题解列表 2022年08月05日 0 点赞 0 评论 425 浏览 评分:0.0
优质题解 #C++1398——你的开发任务(敲详细) 摘要:解题思路: 题目举例违禁词的时候说的是 "love"和"Love" ,于是我以为是仅仅是首字母的大小写而已,然后就这样连续修改,提交,错了10几次(心疼),也懊恼了好几个小时,我一直以为是中间处理出…… 题解列表 2022年08月05日 0 点赞 0 评论 772 浏览 评分:9.9
[编程入门]自定义函数之字符类型统计 摘要:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ int a=0,b=0,c=0,d=0,l; …… 题解列表 2022年08月05日 0 点赞 0 评论 579 浏览 评分:9.9
应该算是比较简单的方法了 摘要:```cpp #include #include using namespace std; //输入三个字符串,按由小到大的顺序输出 int main() { string arr[3…… 题解列表 2022年08月05日 0 点赞 0 评论 437 浏览 评分:0.0