三角形 (C++代码)(递归+记忆化搜索) 摘要:#include <iostream> #include <stdio.h> #include <cstring> #include <algorithm> #include <cmath>…… 题解列表 2018年08月23日 0 点赞 0 评论 1418 浏览 评分:0.0
蓝桥杯算法提高VIP-铺地毯 (C++代码) 摘要:#include <iostream> #include <stdio.h> #include <string> #include <cstring> #include <map> usin…… 题解列表 2018年08月23日 0 点赞 0 评论 1185 浏览 评分:0.0
P1002 (C++代码) 摘要:#include<iostream> #include<stdio.h> #include<cmath> #include<algorithm> #include<string> using…… 题解列表 2018年08月23日 0 点赞 0 评论 1066 浏览 评分:0.0
文科生的悲哀 (C++代码) 摘要:解题思路: 斐波那契数列#include<bits/stdc++.h> using namespace std; typedef long long ll; int main()…… 题解列表 2018年08月23日 0 点赞 0 评论 1490 浏览 评分:9.9
排列 (C++代码) 摘要:#include<stdio.h> #include<iostream> #include<string> #include<algorithm> #include<cmath> using…… 题解列表 2018年08月22日 0 点赞 0 评论 1091 浏览 评分:0.0
生日日数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[12]={31,28,31,30,31,30,3…… 题解列表 2018年08月22日 0 点赞 0 评论 1553 浏览 评分:0.0
蓝桥杯算法提高VIP-洗牌 (C++代码) 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int cov(char ch) { if (ch == 'K') re…… 题解列表 2018年08月22日 0 点赞 0 评论 1865 浏览 评分:5.5
数列排序 (C++代码) 摘要:解题思路:这道题目很简单,不需要进行排序,从K9开始往前遍历,只要小于K1的就进行输出,然后标记已经输出过的数,剩下来的数完全不用排序了,只需要判断是否输出过,如果输出过就不用输出,反之输出;题目的要…… 题解列表 2018年08月22日 3 点赞 0 评论 1071 浏览 评分:8.0
密码截获 (C++代码)暴力吧 寻找最长回文串 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cstring> #include <cstdio> using namespace std; int…… 题解列表 2018年08月22日 2 点赞 5 评论 1627 浏览 评分:9.8