编写题解 1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>#include<ctype.h>using namespace std;int main(){ …… 题解列表 2022年03月21日 0 点赞 0 评论 256 浏览 评分:0.0
编写题解 1129: C语言训练-排序问题<2> 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; for(int i=0;i<10;i…… 题解列表 2022年03月21日 0 点赞 0 评论 167 浏览 评分:0.0
编写题解 1128: C语言训练-排序问题<1> 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[4]; for(int i=0;i<4;i++…… 题解列表 2022年03月21日 0 点赞 0 评论 175 浏览 评分:0.0
迷宫问题 经典bfs模板,详细注释,注意细节! 摘要:**bfs搜索,方法都会,千万注意细节** ```cpp #include #include #include using namespace std; char map[105][105…… 题解列表 2022年03月21日 0 点赞 0 评论 439 浏览 评分:9.9
直接走了漏洞! 摘要:解题思路: 直接相乘输出就好.注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { long…… 题解列表 2022年03月21日 0 点赞 0 评论 316 浏览 评分:9.9
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ string id; string name; int …… 题解列表 2022年03月21日 0 点赞 0 评论 276 浏览 评分:0.0
蓝桥杯2019年第十届国赛真题-大胖子走迷宫 摘要:解题思路:BFS 多加几个判断条件注意事项:当时间<2*k,可能原地不动,也可能动。当时间>=2*k之后,就不用原地不动了,直接走。参考代码:#include"bits/stdc++.h" usi…… 题解列表 2022年03月21日 0 点赞 0 评论 1008 浏览 评分:9.3
蓝桥杯算法提高VIP-选择排序 摘要:注意输出顺序!!#include<iostream>#include<string>#include<cstdio>using namespace std;const int N=1000;int a…… 题解列表 2022年03月21日 0 点赞 0 评论 207 浏览 评分:0.0
编写题解 1026: [编程入门]数字逆序输出 摘要:解题思路:怎么说呢,只要你学过数组你一定能解注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ int n1,n2,n[…… 题解列表 2022年03月21日 0 点赞 0 评论 277 浏览 评分:2.0
编写题解 1025: [编程入门]数组插入处理 摘要:解题思路:冒泡排序,适合新手理解注意事项:题目并没有说必须要插入法,所以只要把输入的所有数重新排序即可参考代码:#include<bits/stdc++.h> using namespace std;…… 题解列表 2022年03月21日 0 点赞 0 评论 328 浏览 评分:0.0