- 博客(5)
- 收藏
- 关注
原创 快速排序求第k小元素
#include #include #include const int maxn=100; int n,k; int a[maxn]; void swap(int &x,int &y) { int t; t=x; x=y; y=t; } int Partition(int a[],int left,int right)//求出p位置到r位置这么多元素中的i大元素
2015-11-30 00:22:04 739
原创 装载问题
//回溯法解装载问题 #include int cw=0,bestw=0; int r=0; const maxn=100; int x[maxn]={0}; int b[maxn]={0}; int n; int w[maxn]; int c; void DFS(int t) { if(t>n) { if(cw>bestw) { bestw=cw; for(in
2015-11-21 21:44:55 548 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人