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

LeetCode Design Compressed String Iterator

时间:2017-09-20 10:30:25      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:support   .com   ==   sed   int   his   while   href   ring   

原题链接在这里:https://leetcode.com/problems/design-compressed-string-iterator/description/

题目:

Design and implement a data structure for a compressed string iterator. It should support the following operations: next and hasNext.

The given compressed string will be in the form of each letter followed by a positive integer representing the number of this letter existing in the original uncompressed string.

next() - if the original string still has uncompressed characters, return the next letter; Otherwise return a white space.
hasNext() - Judge whether there is any letter needs to be uncompressed.

Note:
Please remember to RESET your class variables declared in StringIterator, as static/class variables are persisted across multiple test cases. Please see here for more details.

Example:

StringIterator iterator = new StringIterator("L1e2t1C1o1d1e1");

iterator.next(); // return ‘L‘
iterator.next(); // return ‘e‘
iterator.next(); // return ‘e‘
iterator.next(); // return ‘t‘
iterator.next(); // return ‘C‘
iterator.next(); // return ‘o‘
iterator.next(); // return ‘d‘
iterator.hasNext(); // return true
iterator.next(); // return ‘e‘
iterator.hasNext(); // return false
iterator.next(); // return ‘ ‘

题解:

用 i 标记当前index位置. 用count计数之前char出现的次数. 当count--到0时继续向后移动 i.

Time Complexity: hasNext(), O(1). next(), O(n). n为数字串的长度.

Space: O(1).

AC Java:

 1 class StringIterator {
 2     String s;
 3     int i = 0;
 4     int count = 0;
 5     
 6     char res;
 7     public StringIterator(String compressedString) {
 8         this.s = compressedString;    
 9     }
10     
11     public char next() {
12         if(!hasNext()){
13             return ‘ ‘;
14         }
15 
16         if(count == 0){
17             res = s.charAt(i);
18             i++;
19             while(i<s.length() && Character.isDigit(s.charAt(i))){
20                 //Overflow
21                 if(count > Integer.MAX_VALUE/10 || (count == Integer.MAX_VALUE/10 && s.charAt(i)>=‘8‘)){
22                     throw new IllegalArgumentException("Repeated number is larger than Integer.MAX_VALUE.");
23                 }
24                 
25                 count = count*10 + (s.charAt(i)-‘0‘);
26                 i++;
27             }
28         }
29         count--;
30         return res;
31     }
32     
33     public boolean hasNext() {
34         return !(i==s.length() && count==0);
35     }
36 }
37 
38 /**
39  * Your StringIterator object will be instantiated and called as such:
40  * StringIterator obj = new StringIterator(compressedString);
41  * char param_1 = obj.next();
42  * boolean param_2 = obj.hasNext();
43  */

 

LeetCode Design Compressed String Iterator

标签:support   .com   ==   sed   int   his   while   href   ring   

原文地址:http://www.cnblogs.com/Dylan-Java-NYC/p/7555412.html

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