蓝桥杯基础练习VIP-Huffuman树-题解(C++代码) 摘要:# STL大法好 ```cpp #include #include #include using namespace std; int main(){ int n,x,res=0…… 题解列表 2020年03月15日 0 点赞 1 评论 881 浏览 评分:9.9
A+B for Input-Output Practice (I)-题解(Python代码)python开荒,关于无输入如何推出循环 摘要:```python x = input() # 先输入 while x: # 如果input无输入x值为"",循环退出 s = x.split(" ") print(int(s…… 题解列表 2020年03月15日 0 点赞 0 评论 1106 浏览 评分:9.9
蓝桥杯算法训练VIP-寂寞的数-题解(C++代码)-9%错误 摘要:###### 这个题对细节要求很高一直错9% 1.if(produce(i)>n; for(int i=1;i…… 题解列表 2020年03月15日 0 点赞 0 评论 626 浏览 评分:9.9
[编程入门]三个字符串的排序-题解(C语言代码) 摘要: #include #include void sort(char a[],char b[]){ char t[100]; if(strc…… 题解列表 2020年03月15日 0 点赞 0 评论 1264 浏览 评分:9.9
旋桜-蓝桥杯历届试题-翻硬币-题解(C++代码) 摘要:这题白给 ```cpp #include #include using namespace std; string str1, str2; int ans = 0; …… 题解列表 2020年03月15日 0 点赞 0 评论 640 浏览 评分:9.9
[编程入门]结构体之成绩记录 (Python代码) 摘要:没看到python解题的我就贴一下自己的,不是很简洁,有优化的欢迎贴出来学习。 ```python def grade_in_pri(n): num=[] name=[] …… 题解列表 2020年03月15日 0 点赞 0 评论 882 浏览 评分:9.9
优质题解 JakeLin-1442题-蓝桥杯2013年第四届真题-打印十字图-题解(C++代码) 摘要:#### 模拟过程分步解析: **第一步:初始化(全为'.')** ```cpp int r = 5+n*4; //总共r行r列,5是中间的十字,加上左边2n,右边2n for(int …… 题解列表 2020年03月16日 0 点赞 6 评论 1840 浏览 评分:9.9
[STL训练]2010辽宁省决赛 SPY (C++代码)只做最好的思路! 摘要:这道题看起来复杂,其实就是讲的集合问题。求集合A交集合B再减去集合C的结果。这题能看到是集合问题就不容易了,编码的话,虽然思路清晰,但如果不太熟练iterator迭加器,这题会在关键处把你卡死,仅用循…… 题解列表 2020年03月16日 0 点赞 1 评论 674 浏览 评分:9.9
狂猎来袭-题解(C++代码) 摘要: #include #include using namespace std; void func(int n) { int a[1000];…… 题解列表 2020年03月16日 0 点赞 0 评论 396 浏览 评分:9.9
排序-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n; while(cin>>n){ int *a…… 题解列表 2020年03月16日 0 点赞 0 评论 1103 浏览 评分:9.9