上一页 1 ··· 5 6 7 8 9
摘要: #include <iostream> #include <cstdio> using namespace std; //插入排序 /*原理:像打扑克时整理手牌所做的事一样 在原来数组的基础上,以第一张手牌(认为已经排好序)为初始,依次插入后面的元素 */ int a[9]={0,1,54,77,2 阅读全文
posted @ 2020-08-11 09:46 py佐料 阅读(87) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdio> using namespace std; //选组排序 /*原理:求出第1位(包含)以后的最小值,然后把他放到第1位 求出第2位(包含)以后的最小值,然后把他放到第2位 以此类推执行下去 */ int a[9]={0,1,5 阅读全文
posted @ 2020-08-11 09:04 py佐料 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 法一:正常顺序思路 #include <iostream> #include <cstdio> using namespace std; int main() { int a; cin>>a; while(a%10!=0) //循环结束条件 { cout<<a%10<<" "; a=a/10; } 阅读全文
posted @ 2020-03-28 20:05 py佐料 阅读(138) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdio> #include <cmath> using namespace std; int main() { long long int n; cin>>n; for(long long int i=2;i<=sqrt(n)+1;i 阅读全文
posted @ 2020-03-28 12:43 py佐料 阅读(127) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <cstdio>using namespace std;int fib(int n){ // 递归终止,直接返回 if(n == 1 || n == 2) return 1; // 两次递归调用,求和并返回 return fib(n - 1) 阅读全文
posted @ 2020-03-28 12:36 py佐料 阅读(123) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9