首页 > 其他 > 详细

359. Logger Rate Limiter

时间:2016-07-15 09:25:51      阅读:172      评论:0      收藏:0      [点我收藏+]
   /*
     * 359. Logger Rate Limiter
     * 2016-7-14 by Mingyang
     * 很简单的HashMap,不详谈
     */
    class Logger {
        HashMap<String, Integer> map;
        /** Initialize your data structure here. */
        public Logger() {
            map = new HashMap<String, Integer>();
        }
        /**
         * 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.
         */
        public boolean shouldPrintMessage(int timestamp, String message) {
            if (!map.containsKey(message)) {
                map.put(message, timestamp);
                return true;
            } else {
                int temp = map.get(message);
                if (timestamp - temp < 10) {
                    return false;
                } else {
                    map.put(message, timestamp);
                    return true;
                }
            }
        }
    }

 

359. Logger Rate Limiter

原文:http://www.cnblogs.com/zmyvszk/p/5672342.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!