蓝桥杯基础练习VIP-矩阵乘法-题解(Java代码) 摘要: import java.text.DecimalFormat; import java.util.Scanner; **//很多人没有AC成功可能都是忘记考虑矩阵的0次幂了** public…… 题解列表 2019年12月04日 0 点赞 0 评论 1447 浏览 评分:9.9
[搞比利]克鲁斯卡尔算法2050题-55.战争通讯-题解(C++代码) 摘要: //这题是真的丧病 //卡了我好长时间 #include using namespace std; int cost[10086];//记录花费 bool CNM[10086];…… 题解列表 2019年12月05日 0 点赞 0 评论 781 浏览 评分:9.9
蓝桥杯算法提高VIP-队列操作-题解(C语言代码) 摘要: #include #include typedef int ElementType ; typedef struct listnode { ElementType e…… 题解列表 2019年12月05日 0 点赞 0 评论 764 浏览 评分:9.9
蓝桥杯算法提高VIP-理财计划-题解(C语言代码)满分 题解!!! 摘要:####注意防止四舍五入 #####参考代码: #include int main() { double m,t,p,shouyi=0; …… 题解列表 2019年12月05日 0 点赞 0 评论 1454 浏览 评分:9.9
小九九-题解(C语言代码)满分题解!! 摘要: #include int main() { for(int i=1;i…… 题解列表 2019年12月05日 0 点赞 6 评论 3688 浏览 评分:9.9
数据结构-图的遍历——DFS深度优先搜索-题解(C语言代码) 摘要:#简单版深度优先搜索 #include #include //深度优先遍历算法 (简单版) /* run this program using the…… 题解列表 2019年12月05日 0 点赞 1 评论 1241 浏览 评分:9.9
蓝桥杯算法提高VIP-最长单词-题解(C语言代码) 摘要:```c #include"stdio.h" int main(){ char a[100000]; int b[100000], t = 0, j = 0,x=1; gets_s…… 题解列表 2019年12月05日 0 点赞 0 评论 1311 浏览 评分:9.9
[编程入门]原码求补码-题解(C语言代码)满分题解!! 摘要:####注意讨论0的补码 #####参考代码: #include #include int main() { char x[20]; …… 题解列表 2019年12月05日 0 点赞 1 评论 1043 浏览 评分:9.9
蓝桥杯算法提高- c++_ch03_02满分题解!! 摘要: #include #define N 20 int main() { int n,i=0,j=0,k…… 题解列表 2019年12月05日 0 点赞 0 评论 710 浏览 评分:9.9
Kanna-温度转换(C语言代码) 摘要:超短代码: #include int ctof(int c){ return 32 + c * 9 / 5; } int main(…… 题解列表 2019年12月05日 0 点赞 0 评论 1492 浏览 评分:9.9