码迷,mamicode.com
首页 > 其他好文 > 详细

last occurance

时间:2018-02-25 01:11:49      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:roc   amp   proc   case   element   size   font   can   ssi   

 

Given a target integer T and an integer array A sorted in ascending order, find the index of the last occurrence of T in A or return -1 if there is no such index.

Assumptions

  • There can be duplicate elements in the array.

Examples

  • A = {1, 2, 3}, T = 2, return 1
  • A = {1, 2, 3}, T = 4, return -1
  • A = {1, 2, 2, 2, 3}, T = 2, return 3

Corner Cases

  • What if A is null or A is array of zero length? We should return -1 in this case.
 1 public int lastOccur(int[] array, int target) {
 2     // Write your solution here
 3     if(array == null || array.length == 0 ){
 4         return -1 ; 
 5     }
 6     int left = 0, right = array.length -1 ; 
 7     while(left + 1 <right){
 8         int mid = left + (right - left)/2 ; 
 9       //因为找最后的,所以碰上也不扔着,带着往后面找
10       if(array[mid]<=target){
11           left = mid ; 
12       } else{
13           right = mid ; 
14       }
15     }
16     //post processing
17     if(array[right] == target){
18         return right ; 
19     }
20     if(array[left] == target){
21         return left; 
22     }
23     return -1 ; 
24   }

 

last occurance

标签:roc   amp   proc   case   element   size   font   can   ssi   

原文地址:https://www.cnblogs.com/davidnyc/p/8468142.html

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