zoukankan      html  css  js  c++  java
  • 二分查找离左边元素最近的(可以等于)

    int compare(const void *a,const void *b)
    {
    	return *(int *)a-*(int *)b;
    }
    //二分查找离元素(可以等于)
    int bi_search(int num[10], int len, int target)
    {
    <span style="white-space:pre">	</span>int begin = 0;
    <span style="white-space:pre">	</span>int end = len-1;<span style="white-space:pre">	</span>
    <span style="white-space:pre">	</span>while(begin<end)
    <span style="white-space:pre">	</span>{
    <span style="white-space:pre">		</span>int mid = (begin+end)/2;
    <span style="white-space:pre">		</span>cout<<mid<<" "<<target<<endl;
    <span style="white-space:pre">		</span>cout<<mid<<" "<<len-1<<endl;
    <span style="white-space:pre">		</span>//最近的一个
    <span style="white-space:pre">		</span>if(num[mid]==target)
    <span style="white-space:pre">			</span>return mid;
    <span style="white-space:pre">		</span>else if(num[mid]>target)
    <span style="white-space:pre">			</span>end = mid-1;
    <span style="white-space:pre">		</span>else
    <span style="white-space:pre">			</span>begin = mid+1;
    <span style="white-space:pre">	</span>}
    <span style="white-space:pre">	</span>cout<<"begin:"<<begin<<"end:"<<end<<endl;
    <span style="white-space:pre">	</span>return end;
    }
    void main()
    {
    	int num[10]={11,35,65,25,79,54,34,66,92,30};
    	qsort(num,10,sizeof(int),compare);
    	for(int i=0;i<10;i++)
    		cout<<num[i]<<" ";
    	cout<<endl;
    	int index = bi_search(num, 10, 36);
    	cout<<index<<endl;
    }
    

  • 相关阅读:
    内容生成器.计数器及多列
    STT-MTJ(自旋转移矩磁隧道结)模型的Verilog-A语言描述(仅参考)
    将进酒-唐·李白
    三十六计、孙子兵法
    Keil新建工程步骤
    No.6 Verilog 其他论题
    2-4 Numpy+Matplotlib可视化(二)
    2-3 Numpy+Matplotlib可视化(一)
    0-0 列表,元组,字典,集合
    2-2 Numpy-矩阵
  • 原文地址:https://www.cnblogs.com/yan456jie/p/5369382.html
Copyright © 2011-2022 走看看