蓝桥杯学习训练心得,素数问题及快速幂 摘要:通过近几天的训练,确实收获很多,之前很简单的素数问题也学到了更省时的方法。 这是之前大多数人用的方法: ```cpp int pd(int n) { for(int i=2;im>>mod…… 文章列表 2020年01月14日 0 点赞 3 评论 304 浏览 评分:9.9
BFS-全域最短路实验 摘要:实验代码如下: ```cpp #include #include #include #include using namespace std; struct point { …… 文章列表 2020年01月13日 0 点赞 0 评论 331 浏览 评分:9.9
【编辑入门】三个数找最大值(C语言代码) 摘要:### **题目**: ######有三个整数a b c,由键盘输入,输出其中的最大的数。有三个整数a b c,由键盘输入,输出其中的最大的数。 ##### 说明: 此题目为编程入门题目,在这里…… 文章列表 2020年01月12日 0 点赞 0 评论 449 浏览 评分:9.9
最短路问题—图论与广度优先搜索 摘要:无话可说,直接上代码: ```cpp #include #include #include #include using namespace std; struct point { …… 文章列表 2020年01月10日 0 点赞 0 评论 337 浏览 评分:9.0
图论与广度优先搜索基本(个人笔记2) 摘要:## BFS代码存在部分易错点 下面是实验用的源代码 ```c #include #include #include #include #include using namespace…… 文章列表 2020年01月09日 0 点赞 0 评论 431 浏览 评分:0.0
十六进制转为八进制【函数调用】 摘要:%x是16进制 %o是8进制 ```c #include int fact(int n){ //利用16进制转10进制再将10进制转8进制解决 if(n='0'&&s[…… 文章列表 2020年01月08日 0 点赞 0 评论 495 浏览 评分:0.0
JAM计数法 (C语言代码)(易理解型) 摘要:#### 原体链接:[[蓝桥杯][算法训练VIP]JAM计数法][18839270274] [18839270274]: https://www.dotcpp.com/oj/problem1595.…… 文章列表 2020年01月08日 0 点赞 0 评论 386 浏览 评分:9.9
蓝桥杯算法训练VIP-和为T (C语言代码)--------------C语言——菜鸟级 摘要:#### 原题链接:[[蓝桥杯][算法训练VIP]和为T][18839270274] [18839270274]: https://www.dotcpp.com/oj/problem1617.htm…… 文章列表 2020年01月08日 0 点赞 0 评论 299 浏览 评分:9.9
蓝桥杯算法训练VIP-字串统计 (C语言代码) 摘要:#### 原题链接:[[蓝桥杯][算法训练VIP]字串统计][18839270274] [18839270274]: https://www.dotcpp.com/oj/problem1619.ht…… 文章列表 2020年01月07日 0 点赞 0 评论 285 浏览 评分:9.9
蓝桥杯算法提高VIP-格子位置 (C语言代码) 摘要:#### 原题链接:[[蓝桥杯][算法提高VIP]格子位置][18839270274] [18839270274]: https://www.dotcpp.com/oj/problem1538.ht…… 文章列表 2020年01月06日 0 点赞 0 评论 400 浏览 评分:9.9