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

Leetcode 228: Summary Ranges

时间:2017-12-03 11:30:13      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:turn   ges   --   lis   add   sum   code   tput   nbsp   

Given a sorted integer array without duplicates, return the summary of its ranges.

Example 1:

Input: [0,1,2,4,5,7]
Output: ["0->2","4->5","7"]

 

Example 2:

Input: [0,2,3,4,6,8,9]
Output: ["0","2->4","6","8->9"]

 1 public class Solution {
 2     public IList<string> SummaryRanges(int[] nums) {
 3         var result = new List<string>();
 4         var sb = new StringBuilder();
 5         
 6         int i = 0, j = 0;
 7         while (j < nums.Length)
 8         {
 9             if (sb.Length == 0)
10             {
11                 sb.Append(nums[i]);
12             }
13             else if (nums[j] != nums[j - 1] + 1)
14             {
15                 if (nums[j - 1] != nums[i])
16                 {
17                     sb.Append("->");
18                     sb.Append(nums[j - 1]);
19                 }
20 
21                 result.Add(sb.ToString());
22                 sb.Clear();
23                 i = j;
24                 j--;
25             }
26             
27             j++;
28         }
29         
30         if (sb.Length > 0)
31         {
32             if (i < nums.Length - 1)
33             {
34                 sb.Append("->");
35                 sb.Append(nums[nums.Length - 1]);
36             }
37             
38             result.Add(sb.ToString());
39         }
40         
41         return result;
42     }
43 }

 

Leetcode 228: Summary Ranges

标签:turn   ges   --   lis   add   sum   code   tput   nbsp   

原文地址:http://www.cnblogs.com/liangmou/p/7965364.html

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