蓝桥杯2013年第四届真题-打印十字图 (C++代码) 摘要:解题思路:对角线隔行展开,其余的按照规律填充注意事项:参考代码:#include<iostream>using namespace std;int main(){ char arr[125][125…… 题解列表 2018年12月10日 0 点赞 0 评论 540 浏览 评分:9.9
字符串的输入输出处理 (C++代码) 摘要:解题思路:利用了vector作为存储的媒介注意事项:参考代码:#include <iostream> #include <string.h> #include <vector> using na…… 题解列表 2018年12月10日 0 点赞 0 评论 547 浏览 评分:0.0
字符逆序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string.h> using namespace std; int main() { c…… 题解列表 2018年12月10日 0 点赞 0 评论 522 浏览 评分:0.0
校门外的树 (C++代码)数组标记,简洁 摘要:解题思路: 由于马路上有一些区域要用来建地铁。这些区域用它们在数轴上的起始点和终止点表示。已知任一区域的起始点和终止点的坐标都是整数,区域之间可能有重合的部分。数组初始化为0,如果在区域里的全部标记为…… 题解列表 2018年12月10日 1 点赞 0 评论 787 浏览 评分:2.0
超级楼梯 (C++代码)重温一下记忆搜索 摘要:#include<bits/stdc++.h> using namespace std; int a[50]={0,1,1,2}; int dp[50]; int f(int n) { …… 题解列表 2018年12月09日 0 点赞 1 评论 771 浏览 评分:0.0
筛排处理 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int f(int a,int b) { return a<b; }…… 题解列表 2018年12月09日 0 点赞 0 评论 565 浏览 评分:0.0
第几天 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n,y,r; int a[12]…… 题解列表 2018年12月09日 1 点赞 0 评论 1067 浏览 评分:0.0
神奇的fans (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; whi…… 题解列表 2018年12月09日 1 点赞 0 评论 660 浏览 评分:0.0
破解简单密码 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string a; while(cin>…… 题解列表 2018年12月09日 0 点赞 0 评论 1454 浏览 评分:6.0
倒数第二 (C++代码)暴力一点的STL 摘要:解题思路: 有STL不用,那啥参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),co…… 题解列表 2018年12月09日 0 点赞 0 评论 713 浏览 评分:0.0