LeetCode 35 Search Insert Position 二叉查找相关(一)

来源:互联网 发布:吕中 奚美娟 知乎 编辑:程序博客网 时间:2024/06/11 01:57

题目:

https://leetcode.com/problems/search-insert-position/

Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

You may assume no duplicates in the array.

Here are few examples.
[1,3,5,6], 5 → 2
[1,3,5,6], 2 → 1
[1,3,5,6], 7 → 4
[1,3,5,6], 0 → 0


考查基本的二叉查找算法,直接上代码:

public class Solution {    public int searchInsert(int[] A, int target) {        if (A == null || A.length == 0) {            return 0;        }        int l = 0;        int r = A.length - 1;        while (l <= r) {            int mid = (l + r) / 2;            if (A[mid] == target) {                return mid;            } else if (A[mid] < target) {                l = mid + 1;            } else {                r = mid -1;            }        }        return l;    }}


0 0
原创粉丝点击