604. 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 ' '

Solution

Demand-Computation, hasNext O(1), next O(1), S(1)

维护几个变量,在constructor以及hasNext()中更新current char and count,那么next()可以直接返回。

class StringIterator {
    private String s;
    private int index;
    private char next;
    private int count;

    public StringIterator(String compressedString) {
        s = compressedString;
        index = 0;
        count = 0;
        readNext();
    }
    
    private void readNext() {
        // return directly if current char not eat up or no char left
        if (count > 0 || index >= s.length()) {
            return;
        }
        
        readChar();
        readNum();
    }
    
    private void readChar() {
        next = s.charAt(index++);
    }
    
    private void readNum() {
        while (index < s.length() && Character.isDigit(s.charAt(index))) {
            count = 10 * count + s.charAt(index++) - '0';// increase index
        }
    }
    
    public char next() {
        if (!hasNext()) {
            return ' ';
        }
        
        --count;    // count down here
        return next;
    }
    
    public boolean hasNext() {
        readNext();
        return count > 0;
    }
}

/**
 * Your StringIterator object will be instantiated and called as such:
 * StringIterator obj = new StringIterator(compressedString);
 * char param_1 = obj.next();
 * boolean param_2 = obj.hasNext();
 */
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 12,196评论 0 10
  • 今天是潼返校的日子。一早爸爸开车送我们到火车站与同行的哥哥姐姐汇合。9:10开始检票,看着小小的人儿虽然不舍但还是...
    渔樵言歌阅读 1,891评论 1 0
  • 下班后写作 第一天 学习笔记 第一课 下班后时间精力生活管理方法 精彩摘要: “建立自己的风格和专业,把自己当作一...
    那菲尔阅读 2,812评论 1 1
  • 看了电影《芳华》,大概是因为没有经历过上世纪七十年代,对冯导希望表现出来的历史感完全无感。 甚至一度将女...
    柒生柚阅读 861评论 0 0
  • 爱的懵懂,对此什么都不明白。 Emily是男主角will的第一选择。 她是他在大学接触的最棒的女孩,他们是金童玉女...
    橄榄山阅读 4,944评论 0 0

友情链接更多精彩内容