蓝桥杯2014年第五届真题-Log大侠 (C++代码) 摘要:解题思路: 其实暴力就行了。参考代码:#include<bits/stdc++.h> using namespace std; typedef long long LL; co…… 题解列表 2018年08月14日 0 点赞 5 评论 334 浏览 评分:0.0
蓝桥杯算法训练VIP-阿尔法乘积 (C++代码) 摘要:解题思路:递归完事注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int f(int a){ int s=1,g=0,c[50]; while…… 题解列表 2018年08月14日 0 点赞 0 评论 822 浏览 评分:9.9
蓝桥杯基础练习VIP-FJ的字符串 (C++代码) 摘要:解题思路:A1 = “A” A2 = “ABA” A3 = “ABACABA” A4 = “ABACABADABACABA” 可以看出,当n等于多少就有一个相应的(n=1-26对应表示…… 题解列表 2018年08月14日 27 点赞 3 评论 1169 浏览 评分:9.6
蓝桥杯算法训练VIP-数对 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; for(int i=1;i<=…… 题解列表 2018年08月14日 0 点赞 0 评论 615 浏览 评分:0.0
蓝桥杯算法训练VIP-数位分离 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,s=0; int a[100]; cin>>n;…… 题解列表 2018年08月14日 0 点赞 0 评论 841 浏览 评分:0.0
蓝桥杯算法训练VIP-完数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,s=0; int i,j; cin>>n; fo…… 题解列表 2018年08月14日 0 点赞 0 评论 640 浏览 评分:0.0
蓝桥杯算法训练VIP-反置数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int f(int a){ int s=0; while(1) {…… 题解列表 2018年08月14日 0 点赞 0 评论 845 浏览 评分:8.0
蓝桥杯算法训练VIP-友好数 (C++代码) 摘要:解题思路:注意事项:参考代码#include<bits/stdc++.h>using namespace std;int f(int a,int b){ int s1=0,s2=0,i,j; for(…… 题解列表 2018年08月14日 0 点赞 0 评论 994 浏览 评分:0.0
数据结构-图的遍历——广度优先搜索 (C++代码)可AC 摘要:解题思路:建立邻接表,并按照题目意思从顶点0到n-1顶点遍历注意事项:参考代码:#include <iostream> using namespace std; int main(){ int…… 题解列表 2018年08月13日 6 点赞 0 评论 1001 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单 (C++代码) 摘要:解题思路: 首先,先建变量N,储存数量,再建字符串数组namelist储存名单,输入N,再用for循环输入数据,最后只需要用for循环轮流判断是否相等,根据判断输出.注意事项: strin…… 题解列表 2018年08月13日 0 点赞 0 评论 1545 浏览 评分:9.9