LeetCode 359. Logger Rate Limiter (记录速率限制器)$

Design a logger system that receive stream of messages along with its timestamps, each message should be printed if and only if it is not printed in the last 10 seconds.

Given a message and a timestamp (in seconds granularity), return true if the message should be printed in the given timestamp, otherwise returns false.

It is possible that several messages arrive roughly at the same time.

Example:

Logger logger = new Logger();

// logging string "foo" at timestamp 1
logger.shouldPrintMessage(1, "foo"); returns true; 

// logging string "bar" at timestamp 2
logger.shouldPrintMessage(2,"bar"); returns true;

// logging string "foo" at timestamp 3
logger.shouldPrintMessage(3,"foo"); returns false;

// logging string "bar" at timestamp 8
logger.shouldPrintMessage(8,"bar"); returns false;

// logging string "foo" at timestamp 10
logger.shouldPrintMessage(10,"foo"); returns false;

// logging string "foo" at timestamp 11
logger.shouldPrintMessage(11,"foo"); returns true;

 

 


 

题目标签:Hash Table

  题目让我们设计一个 message 是否可以发送的检测器,只有在这个message 第一次发送,或者 上一次发送已经过去了10秒的情况下,才可以发送。

  利用HashMap 来保存 message, 和它的 timestamp 就可以了。

 

 

 

Java Solution:

Runtime beats 49.91% 

完成日期:06/06/2017

关键词:HashMap

关键点:保存message 和 timestamp

 1 class Logger 
 2 {
 3     HashMap<String, Integer> map;
 4     /** Initialize your data structure here. */
 5     public Logger() 
 6     {
 7         map = new HashMap<>();
 8     }
 9     
10     /** Returns true if the message should be printed in the given timestamp, otherwise returns false.
11         If this method returns false, the message will not be printed.
12         The timestamp is in seconds granularity. */
13     public boolean shouldPrintMessage(int timestamp, String message) 
14     {
15         if(!map.containsKey(message)) // first time for this message
16         {
17             map.put(message, timestamp);
18             return true;
19         }
20         else // at least second time for this message
21         {
22             if(timestamp >= map.get(message) + 10)
23             {
24                 map.put(message, timestamp);
25                 return true;
26             }
27             else
28                 return false;
29             
30         }
31     }
32 }
33 
34 /**
35  * Your Logger object will be instantiated and called as such:
36  * Logger obj = new Logger();
37  * boolean param_1 = obj.shouldPrintMessage(timestamp,message);
38  */

参考资料:N/A

 

LeetCode 题目列表 - LeetCode Questions List

转载于:https://www.cnblogs.com/jimmycheng/p/7797169.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值