二分查找、中位数查找

注意递归停止的要求,要么中间找到返回m

          要么start==end找到返回m,

          要么还是找不到,返回-1.

 

int Binary_search(int *a,int start,int end,int x){
  if(start==end){
    if(a[start]==x)
      return start;
    else
      return -1;
  }
  int m=(start+end)/2;
  if(x>a[m]){
    Binary_search(a,m+1,end,x);
  }
  else if(x<a[m]){
    Binary_search(a,start,m-1,x);
  }
  else
    return m;
}

 

void swap(int a, int b){
int temp=a;
a=b;
b=temp;
}

中位数查找:在大小为N的数组中查找第k大(1<=k<=n)的数字并返回。

int Median_search(int *a,int start,int end,int x){
  if(end-start+1<x)
  return -1;
  int j=start;
  for(int i=start+1;i<end;i++){
    if(a[i]<a[start]){
      ++j;
      swap(a[i],a[j]);
    }
  }
  swap(a[start],a[j]);
  if(j-start+1==x){
    return a[j];
  }
  else if(j-start+1>x)
    return Median_search(a,start,j-1,x);
  else
    return Median_search(a,j+1,end,x+start-j-1);
}

转载于:https://www.cnblogs.com/huangshan/p/3386704.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值