首页 > 其他 > 详细

【leetcode】Search Insert Position

时间:2015-04-10 19:38:30      阅读:93      评论:0      收藏:0      [点我收藏+]

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

 

普通方法,时间复杂度为O(n)

 1 class Solution {
 2 public:
 3     int searchInsert(int A[], int n, int target) {
 4         if(n==0) return NULL;
 5         int i=0;
 6         for(i=0;i<n;i++)
 7         {
 8             if(target<=A[i])
 9                 return i;
10         }
11         return i;
12     }
13 };

 

二分法,时间复杂度为O(logn)

 1 class Solution {
 2 public:
 3     int searchInsert(int A[], int n, int target) {
 4        int start=0;
 5        int end=n-1;
 6        int index=(start+end)/2;
 7        while(start<end)
 8        {
 9                if(A[index]>target)
10                {
11                    end=index-1;
12                    index=(start+end)/2;
13                }else if(A[index]<target){
14                    start=index+1;
15                    index=(start+end)/2;
16                }else{
17                    return index;
18                }
19        }
20        if(A[start]<target){
21                return start+1;
22        }else{
23                return start;
24        }
25     }
26 };

 

【leetcode】Search Insert Position

原文:http://www.cnblogs.com/jawiezhu/p/4415437.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!