二分查找的递归算法程序

#include<iostream>
using namespace std;

int search_sorted(int a[], int p, int q, int v);

int main()
{
 int size;

 cout << "input the size of th array: " << endl;
 cin >> size;

 int *pa = new int [size];
 cout << "input the " << size << " elements of array" << endl;
 for(int i = 0; i < size; i++)
 {
  cin >> pa[i]; 
 }

 cout << "input the value which you want to search:";
 int value;
 cin >> value;

 int position = -1;
 position = search_sorted(pa, 0, size - 1, value);

 if (position > -1)
 {
  cout << "the position of the value in array is: " << position + 1 << endl; 
 }
 else
 {
  cout << "The value you want to search is not in the array." << endl; 
 }

 return 0;
}
int search_sorted(int a[], int p, int q, int v)
{
 if (q >= p)
 {
  int mid = (q + p) / 2;

  if (a[mid] == v)
  {
   return mid;  
  }
  else if(a[mid] > v)
  {
   search_sorted(a,mid+1,q,v);  
  }
  else
  {
   search_sorted(a,p,mid-1,v);  
  }
 }
 else
 {
  return -1; 
 }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值