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

算法各种模板以及公式

时间:2016-01-13 10:34:59      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

1,二分:

技术分享
public static int binarySearch(int[] nums, int target) {
        if(nums == null || nums.length == 0) {
            return -1;
        }
        int start = 0;
        int end = nums.length - 1;
        while (start <= end){
            int mid = start + (end - start) / 2;
            if (nums[mid] == target){
                return mid;
            } else if (nums[mid] < target) {
                start = mid + 1;
            } else {
                end = mid - 1;
            }
        }
        return -1;
    }
View Code

 

算法各种模板以及公式

标签:

原文地址:http://www.cnblogs.com/yueyebigdata/p/5126333.html

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