题目地址:https://leetcode-cn.com/problems/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;

题目大意

请你设计一个日志系统,可以流式接收日志以及它的时间戳。

该日志会被打印出来,需要满足一个条件:当且仅当日志内容 在过去的 10 秒钟内没有被打印过。

给你一条日志的内容和它的时间戳(粒度为秒级),如果这条日志在给定的时间戳应该被打印出来,则返回 true,否则请返回 false。

要注意的是,可能会有多条日志在同一时间被系统接收。

解题方法

字典

使用一个字典,保存如果10秒内没有被打印过的消息的时间戳。每个消息到达的时候,查找是否在字典中出现过,如果时间戳的间隔小于10秒,则直接返回false.

C++代码如下:

class Logger {
public:
/** Initialize your data structure here. */
Logger() {
} /** Returns true if the message should be printed in the given timestamp, otherwise returns false.
If this method returns false, the message will not be printed.
The timestamp is in seconds granularity. */
bool shouldPrintMessage(int timestamp, string message) {
if (m_.count(message) && timestamp - m_[message] < 10) {
return false;
}
m_[message] = timestamp;
return true;
}
private:
unordered_map<string, int> m_;
}; /**
* Your Logger object will be instantiated and called as such:
* Logger* obj = new Logger();
* bool param_1 = obj->shouldPrintMessage(timestamp,message);
*/

日期

2019 年 9 月 17 日 —— 听了hulu宣讲会,觉得hulu的压力不大

最新文章

  1. .net使用cefsharp开源库开发chrome浏览器(二)
  2. TMS320C64X+ 中使用EDMA3中断
  3. python多线程之Event(事件)
  4. POJ1141 Brackets Sequence
  5. UVA 10779 (最大流)
  6. selenium弹窗关闭
  7. Hadoop1.x与2.x安装笔记
  8. PHP中超全局变量$GLOBALS和global的区别
  9. 实现自己的脚本语言ngscript之一:词法分析
  10. Python3基础 使用 in notin 查询一个字符是否指定字典的键或者值
  11. 【Linux Tips】登陆,提示符,别名
  12. SpringMVC详解(一)------入门实例
  13. Linux入门——用户组管理
  14. Vue-起步篇:Vue与React、 Angular的区别
  15. pymongo的操作
  16. 解决chrome浏览器在win8下没有注册类的问题
  17. 固态硬盘和机械硬盘的比较和SQLSERVER在两种硬盘上的性能差异
  18. loadrunner11--集合点(Rendezvous )菜单是灰色不能点击
  19. 【bzoj4332】【JSOI2012】 分零食 生成函数 FFT
  20. css 文字展示两行 其余的省略号显示

热门文章

  1. phpMyAdmin简介及安装
  2. rabbit mq的一个实例,异步功能
  3. 基于 芯片 nordic 52832 rtt 调试(Mac 电脑)
  4. 29-Regular Expression Matching-leetcode
  5. C++面试基础篇(一)
  6. c#年份筛选
  7. Redis6 新特性
  8. 大数据学习day23-----spark06--------1. Spark执行流程(知识补充:RDD的依赖关系)2. Repartition和coalesce算子的区别 3.触发多次actions时,速度不一样 4. RDD的深入理解(错误例子,RDD数据是如何获取的)5 购物的相关计算
  9. android studio 使用 aidl(二)异步回调
  10. 常见排序——Java实现