优质题解 蓝桥杯基础练习-十进制转十六进制-题解(C++代码) 摘要:```cpp #include #include #include #include #include #include using namespace std; //typ…… 题解列表 2020年03月26日 1 点赞 1 评论 1370 浏览 评分:9.9
优质题解 蓝桥杯历届试题-最大子阵-题解(C语言代码)---dp最大子段和思想(详细) 摘要:解题思路: ###### //建议边看代码边看思路// 1.如果单纯枚举首行,末行,首列,末列来做这道题,就是四重循环,数据最大时,每重循环大概500次,500^4时间复杂度可以达到十的十次方,肯…… 题解列表 2020年03月26日 0 点赞 6 评论 2780 浏览 评分:9.8
[编程入门]求和训练-题解(C语言代码) 摘要: #include int main() { double a,b,c; int i,j,k; double sa=0…… 题解列表 2020年03月26日 0 点赞 0 评论 778 浏览 评分:0.0
特殊排序-题解(C++代码) 摘要:```cpp #include using namespace std; typedef struct Node{ int data; struct Node *next;…… 题解列表 2020年03月26日 0 点赞 0 评论 850 浏览 评分:0.0
字符串内排序-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ char s[1000]; w…… 题解列表 2020年03月26日 0 点赞 0 评论 712 浏览 评分:0.0
蓝桥杯2015年第六届真题-机器人繁殖-题解(Java代码) 摘要:```java public static void main(String[] args) { Scanner scanner=new Scanner(System.in); int …… 题解列表 2020年03月26日 0 点赞 0 评论 764 浏览 评分:0.0
抢夺资源-题解(Python代码)py开荒柘,前几天刚刚看完博弈论的课,这题就是一道巴什博弈 摘要:还是先上代码,其实也不用看,跟别人的差不多 ```python while True: base=[int(i) for i in input().split()] n,m=base[0]…… 题解列表 2020年03月26日 0 点赞 0 评论 787 浏览 评分:6.0
[编程入门]报数问题-题解(C++代码) 摘要:题解 1047 这道题看起来有点烦,其实非常简单,函数可以一行代码搞定。先上代码: #include using namespace std; int function(int n){…… 题解列表 2020年03月26日 0 点赞 0 评论 989 浏览 评分:8.5
大整数排序-题解(C++代码) 摘要:```cpp #include #include #include #include using namespace std; bool cmp(string a,string b…… 题解列表 2020年03月26日 0 点赞 0 评论 593 浏览 评分:0.0
蓝桥杯算法训练VIP-摆动序列-题解(C语言代码)(新手专属) 摘要:``` #include #include #include int k,p,m=0; int dp[100][100]; int a[10000]; …… 题解列表 2020年03月26日 0 点赞 0 评论 1470 浏览 评分:0.0