二分查找
Posted hdyss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二分查找相关的知识,希望对你有一定的参考价值。
题目描述
对于一个有序数组,我们通常采用二分查找的方式来定位某一元素,请编写二分查找的算法,在数组中查找指定元素。
给定一个整数数组A及它的大小n,同时给定要查找的元素val,请返回它在数组中的位置(从0开始),若不存在该元素,返回-1。若该元素出现多次,请返回第一次出现的位置。
测试样例:
[1,3,5,7,9],5,3
返回:1
class BinarySearch { public: int getPos(vector<int> A, int n, int val) { // write code here int begin=0; int end=n-1; while(begin<=end){ int mid=(begin+end)/2; if(val==A[mid]){ while(A[mid]==val) mid--; return mid+1; } if(val>A[mid]){ begin=mid+1; }else end=mid-1; } return -1; } };
以上是关于二分查找的主要内容,如果未能解决你的问题,请参考以下文章