zoukankan      html  css  js  c++  java
  • [LintCode] Missing Interval

    Given a sorted integer array where the range of elements are in the inclusive range [lower, upper], return its missing ranges.

    Example

    Given nums = [0, 1, 3, 50, 75], lower = 0 and upper = 99
    return ["2", "4->49", "51->74", "76->99"].

    The algorithm to solve this problem is pretty straightforward. The hard part is to think of all cases and handle them correctly. 

    All possible corner cases are shown as follows.

    1. nums has no elements;

    2. the first element is bigger than lower

    3. the last element is smaller than upper 

    Another place that needs our attention is when subtracting two numbers to get the difference. Because the elements in nums,

    lower and upper can be very big or very small, so the subtraction operation to get the diff can overflow the integer size, causing 

    incorrect behavior when using diff's value to determine what to do.

    For example, if nums[0] = 1, lower = Integer.MIN_VALUE, then nums[0] - lower > Integer.MAX_VALUE, OVERFLOW!!! 

    As a result, we initialize diff as type of long, and convert all operands to long in these diff subtractions.

     1 public class Solution {
     2     /**
     3      * @param nums a sorted integer array
     4      * @param lower an integer
     5      * @param upper an integer
     6      * @return a list of its missing ranges
     7      */
     8     public List<String> findMissingRanges(int[] nums, int lower, int upper) {
     9         List<String> missRange = new ArrayList<String>();
    10         if(nums == null){
    11             return missRange;
    12         }
    13         if(nums.length == 0){
    14             if(lower == upper){
    15                 missRange.add(String.valueOf(lower));
    16             }
    17             else{
    18                 missRange.add(String.valueOf(lower) + "->" + String.valueOf(upper));
    19             }
    20             return missRange;
    21         }
    22         int n = nums.length;
    23         long diff = 0;
    24         if(nums[0] > lower){
    25             diff = (long)nums[0] - (long)lower;
    26             if(diff == 1){
    27                 missRange.add(String.valueOf(lower));
    28             }
    29             else{
    30                 missRange.add(String.valueOf(lower) + "->" + String.valueOf(nums[0] - 1));
    31             }
    32         }
    33         for(int i = 1; i < n; i++){
    34             diff = (long)nums[i] - (long)nums[i - 1];
    35             if(diff > 0){
    36                 if(diff == 2){
    37                     missRange.add(String.valueOf(nums[i - 1] + 1));    
    38                 }
    39                 else if(diff > 2){
    40                     missRange.add(String.valueOf(nums[i - 1] + 1) + "->" + String.valueOf(nums[i] - 1));
    41                 }
    42             }
    43         }
    44         if(nums[n - 1] < upper){
    45             diff = (long)upper - (long)nums[n - 1];
    46             if(diff == 1){
    47                 missRange.add(String.valueOf(upper));
    48             }
    49             else{
    50                 missRange.add(String.valueOf(nums[n - 1] + 1) + "->" + String.valueOf(upper));                
    51             }
    52         }
    53         return missRange;
    54     }
    55 }
  • 相关阅读:
    vue打包传递参数配置域名
    相同域名nginx下部署两个vue项目
    vue项目改造服务端渲染
    vue项目使用less全局变量
    postMessage跨域实现localstorage跨域共享
    node_webkit打包成桌面应用程序
    vue项目本地服务器设置既能localhost访问又能手机ip访问
    GATT scan的流程
    Windows下面的常用的快捷键
    把驱动编译进内核和编译成模块
  • 原文地址:https://www.cnblogs.com/lz87/p/7203600.html
Copyright © 2011-2022 走看看