Hanoi双塔问题——递归+高精度运算 摘要:解题思路:单塔:2n-1双塔:2*(2n-1)高精度乘低精度高精度的减法删除多余的前导零注意事项:参考代码:…… 题解列表 2024年11月23日 0 点赞 0 评论 379 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <math.h>int gys(int a,int b){ if (a%b == 0) return b; else …… 题解列表 2024年11月23日 0 点赞 0 评论 440 浏览 评分:0.0
注意题目要求 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d",&a); while(a) { s…… 题解列表 2024年11月23日 0 点赞 0 评论 187 浏览 评分:0.0
虽然长但可放心食用 摘要:解题思路:1. 定义了一个函数 zhixing ,用于执行快速排序中的一次划分操作,返回划分的基准位置。2. 定义了函数 kp ,用于对数组进行快速排序。3. 在 main 函数中:首先生…… 题解列表 2024年11月23日 0 点赞 0 评论 183 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a,b; scanf("%d %d",&a,&b); if(a<b) { …… 题解列表 2024年11月23日 0 点赞 0 评论 154 浏览 评分:0.0
比较简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a=0,b=0; scanf("%d",&n); a=2*n-40; b=n…… 题解列表 2024年11月23日 0 点赞 0 评论 258 浏览 评分:0.0
送分题。。。。。。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d",&a); for(b=1;b<a;b++) { …… 题解列表 2024年11月23日 0 点赞 0 评论 439 浏览 评分:0.0
奥运奖牌计数C语言for循环做法分享 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,a,b,c,d=0,e=0,f=0,g=0; scanf("%d",&n); …… 题解列表 2024年11月23日 0 点赞 0 评论 246 浏览 评分:0.0
结构体实现链表,遍历求和 #1585: 蓝桥杯算法训练VIP-链表数据求和操作 (C++) 摘要:``` #include #include int res1, res2; typedef struct lNode { int num1, num2; struct lN…… 题解列表 2024年11月23日 0 点赞 0 评论 199 浏览 评分:0.0
最复杂的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int sxh(int a){ int b,c,d; b=a%10; c=a/10%1…… 题解列表 2024年11月23日 0 点赞 0 评论 151 浏览 评分:0.0