1931: 蓝桥杯算法提高VIP-逆序排列 摘要:解题思路:注意事项:参考代码:l=list(map(int,input().split())) for i in l[:-1][::-1]: print(i,end=' '…… 题解列表 2022年01月30日 0 点赞 0 评论 477 浏览 评分:0.0
1858: 逆序数 摘要:解题思路:注意事项:参考代码:n = int(input()) l=list(map(int,input().split())) s=0 for i in range(n-1): fo…… 题解列表 2022年01月30日 0 点赞 0 评论 342 浏览 评分:0.0
Hifipsysta-1122题-C语言训练-亲密数(C++代码)缩小样本空间法 摘要:解题思路: ① 本题如果将A和B写进两个循环同时遍历,运算复杂度会非常高基本在$$O(n^2)$$量级,因此需要考虑的是如何缩小样本空间。 ② 3000以内的任意一个整数都可能成为或者说有资格成为…… 题解列表 2022年01月30日 0 点赞 0 评论 537 浏览 评分:0.0
Hifipsysta-1133题-C语言训练-求1+2!+3!+...+N!的和(C++代码)双函数法 摘要:```cpp #include using namespace std; long long int fact(int n){ long long int prod=1; …… 题解列表 2022年01月30日 0 点赞 0 评论 557 浏览 评分:0.0
Hifipsysta-1137题-C语言训练-求函数值(C++代码)普通递归法 摘要:```cpp #include using namespace std; int func(int x){ int y=0; if(x==1){ y=1…… 题解列表 2022年01月30日 0 点赞 0 评论 328 浏览 评分:0.0
Hifipsysta-1152题-C语言训练-计算:t=1-1/(2*2)-1/(3*3)-...-1/(m*m)(C++代码)双函数法 摘要:注意事项: ① 使用double类型时,scanf要用"%lf"。 ② sum_fraction的遍历从2开始。 ```cpp #include #include using name…… 题解列表 2022年01月30日 0 点赞 0 评论 312 浏览 评分:0.0
Hifipsysta-1156题-C语言训练-阿姆斯特朗数(C++代码)字符串转换法 摘要: ```cpp #include #include #include #include using namespace std; bool is_armstrong(int n){ …… 题解列表 2022年01月31日 0 点赞 0 评论 416 浏览 评分:0.0
Hifipsysta-1136题-C语言训练-求具有abcd=(ab+cd)2性质的四位数(C++代码)字符串转换法 摘要: ```cpp #include #include #include using namespace std; bool is_condition(int n){ strin…… 题解列表 2022年01月31日 0 点赞 0 评论 331 浏览 评分:0.0
蓝桥杯基础练习VIP-Huffuman树-题解(C语言代码) 摘要:解题思路:重复利用冒泡排序 从大到小排序注意事项:每次 最小的两个数放在最后两数组元素里参考代码:#includeint main(){ int n; int num[150]={0}; int i,…… 题解列表 2022年01月31日 0 点赞 0 评论 438 浏览 评分:0.0
Hifipsysta-1116题-IP判断(C++代码)字符串转换和排除法 摘要:解题思路: ① 建立一个名为flag的标志变量,默认为true。 ② 遍历字符串的每一个字符,如果不是数字标记flag为false,跳出循环 ③ 如果是数字,就装到子串temp_str里面 ④…… 题解列表 2022年01月31日 0 点赞 0 评论 391 浏览 评分:0.0