会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
赛博朋克
大黄蜂
博客园
首页
新随笔
新文章
联系
管理
订阅
2024年11月16日
数组排序(双数组混插版)
摘要: #include <iostream> using namespace std; void sni(int a[],int b[],int c[]){ int an=4,bn=8,cn=12; int i=0,j=0,k=0; while(i<an&&j<bn){ if(a[i]>b[j]){ c[
阅读全文
posted @ 2024-11-16 08:33 爱吃泡面的皮卡
阅读(4)
评论(0)
推荐(0)
编辑
2024年11月10日
函数有参无反冒泡排序
摘要: #include <iostream> using namespace std; void s(int a[100]){ for(int i=1;i<=10;i++){ for(int j=i+1;j<=10;j++){ if(a[i]>a[j]){ swap(a[i],a[j]); } } } f
阅读全文
posted @ 2024-11-10 09:33 爱吃泡面的皮卡
阅读(0)
评论(0)
推荐(0)
编辑
桶排序
摘要: #include <iostream> using namespace std; int main(){ int a[10]={1,3,5,7,9,8,6,4,2,10}; int b[11]; for(int i=0;i<11;i++){ b[i]=0; } for(int i=0;i<10;i+
阅读全文
posted @ 2024-11-10 09:33 爱吃泡面的皮卡
阅读(2)
评论(0)
推荐(0)
编辑
2024年10月27日
容器类型冒泡排序<vector>
摘要: #include <iostream> #include <vector> using namespace std; int main(){ vector<int> a; a.push_back(1); a.push_back(3); a.push_back(2); for(int i=0;i<a.
阅读全文
posted @ 2024-10-27 09:58 爱吃泡面的皮卡
阅读(1)
评论(0)
推荐(0)
编辑
2024年8月9日
等腰三角形(mc版)
摘要: #include <iostream> #include "minecraft.h" #include "Windows.h" TxMinecraft mc; using namespace std; int X,Y,Z,id=0,data=0; int a=0; void chu_shi_hua(
阅读全文
posted @ 2024-08-09 09:54 爱吃泡面的皮卡
阅读(11)
评论(0)
推荐(0)
编辑
2024年6月29日
迷宫
摘要: #include <iostream> #include <iomanip> using namespace std; int main(){ int c,d,h,s,u,t; char f; cout<<"请输入棋盘的大小"<<endl; cin>>c>>d; cout<<"请输入人物的坐标"<<
阅读全文
posted @ 2024-06-29 09:20 爱吃泡面的皮卡
阅读(6)
评论(0)
推荐(0)
编辑
2024年6月22日
阶乘
摘要: #include <iostream> using namespace std; int n(int a){ if(a==1){ return 1; } return a*n(a-1); } int main(){ int a; cin>>a; cout<<n(a); return 0; }
阅读全文
posted @ 2024-06-22 08:45 爱吃泡面的皮卡
阅读(8)
评论(0)
推荐(0)
编辑
2024年6月21日
选择排序
摘要: #include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int a[n]; for(int i=0;i<n;i++){ cin>>a[i]; } for(int i=0;i<n-1;i++){ for(int
阅读全文
posted @ 2024-06-21 19:44 爱吃泡面的皮卡
阅读(5)
评论(0)
推荐(0)
编辑
2024年6月15日
快速排序
摘要: #include<bits/stdc++.h> using namespace std; void happy(int a[1000],int n,int m){ int i=m,j=n,t=a[m]; if(i>j)return ; while(i!=j){ while(a[j]>=t&&i<j)
阅读全文
posted @ 2024-06-15 10:00 爱吃泡面的皮卡
阅读(2)
评论(0)
推荐(0)
编辑
2024年6月8日
阶乘和
摘要: #include<bits/stdc++.h> using namespace std; long long a(int b){ int sum=1; if(b==1){ return 1; }else{ for(int j=1;j<=b;j++){ sum*=j; } } return sum+a
阅读全文
posted @ 2024-06-08 09:32 爱吃泡面的皮卡
阅读(1)
评论(0)
推荐(0)
编辑
下一页
公告