码迷,mamicode.com
首页 > 编程语言 > 详细

Java中的二分法查找算法

时间:2014-07-22 23:00:14      阅读:512      评论:0      收藏:0      [点我收藏+]

标签:style   blog   java   color   strong   2014   

[ 什么是二分查找 ] 

二分查找又称为折半查找,该算法的思想是将数列按序排列,采用跳跃式方法进行查找,即先以有序数列的中点位置为比较对象,

如果要找的元素值小于该中点元素,则将待查序列缩小为左半部分,否则为右半部分。以此类推不断缩小搜索范围。


[ 二分查找的条件 ]

二分查找的先决条件是查找的数列必须是有序的。


[ 二分查找的优缺点 ]

优点:比较次数少,查找速度快,平均性能好;

缺点:要求待查数列为有序,且插入删除困难;

适用场景:不经常变动而查找频繁的有序列表。


[ 算法步骤描述 ]

① 首先确定整个查找区间的中间位置 mid = (min + max)/ 2 

② 用待查关键字值与中间位置的关键字值进行比较:

     i. 若相等,则查找成功;

    ii. 若小于,则在前半个区域继续进行折半查找;

    iii若大于,则在后半个区域继续进行折半查找;

③ 对确定的缩小区域再按折半公式,重复上述步骤。

④ 最后得到结果:要么查找成功,要么查找失败。折半查找的存储结构采用一维数组存放。


[ Java实现 ]

public class BinarySearch {
	public static int binarySearch(int[] arr, int target) {
		if (arr != null) {
			int min, mid, max; 
			min = 0; // the minimum index
			max = arr.length - 1; // the maximum index
			while (min <= max) {
				mid = (min + max) / 2; // the middle index
				if (arr[mid] < target) {
					min = mid + 1;
				} else if (arr[mid] > target) {
					max = mid - 1;
				} else {
					return mid;
				}
			}
		}
		return -1;
	}
	
	// test case
	public static void main(String[] args) {
		int[] arr = { 1, 2, 3, 5, 6, 7, 8, 9, 23, 34 };
		System.out.println(binarySearch(arr, 5));
		System.out.println(binarySearch(arr, 23));
		System.out.println(binarySearch(arr, 0));
		System.out.println(binarySearch(arr, 35));
	}
}






Java中的二分法查找算法,码迷,mamicode.com

Java中的二分法查找算法

标签:style   blog   java   color   strong   2014   

原文地址:http://blog.csdn.net/zdp072/article/details/24841525

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!