博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LintCode] 604. Design Compressed String Iterator
阅读量:6088 次
发布时间:2019-06-20

本文共 1970 字,大约阅读时间需要 6 分钟。

Problem

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 trueiterator.next(); // return 'e'iterator.hasNext(); // return falseiterator.next(); // return ' '

Solution

class StringIterator {    Queue
queue; public StringIterator(String str) { queue = new LinkedList<>(); int i = 0, len = str.length(); while (i < len) { int j = i+1; while (j < len && Character.isDigit(str.charAt(j))) j++; char ch = str.charAt(i); int count = Integer.parseInt(str.substring(i+1, j)); queue.offer(new Node(ch, count)); i = j; } } public char next() { if (!hasNext()) return ' '; Node node = queue.peek(); node.count--; if (node.count == 0) queue.poll(); return node.val; } public boolean hasNext() { return !queue.isEmpty(); }}class Node { char val; int count; public Node(char c, int n) { this.val = c; this.count = n; }}

转载地址:http://oxvwa.baihongyu.com/

你可能感兴趣的文章
【HDOJ】3553 Just a String
查看>>
Java 集合深入理解(7):ArrayList
查看>>
2019年春季学期第四周作业
查看>>
linux环境配置
查看>>
tomcat指定配置文件路径方法
查看>>
linux下查看各硬件型号
查看>>
epoll的lt和et模式的实验
查看>>
Flux OOM实例
查看>>
07-k8s-dns
查看>>
Android 中 ListView 分页加载数据
查看>>
oracle启动报错:ORA-00845: MEMORY_TARGET not supported on this system
查看>>
Go方法
查看>>
Dapper丶DapperExtention,以及AbpDapper之间的关系,
查看>>
搞IT的同学们,你们在哪个等级__那些年发过的帖子
查看>>
且谈语音搜索
查看>>
MySQL数据库导入导出常用命令
查看>>
低版本Samba无法挂载
查看>>
Telegraf+Influxdb+Grafana构建监控平台
查看>>
使用excel 展现数据库内容
查看>>
C#方法拓展
查看>>