码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 933. Number of Recent Calls

时间:2019-03-28 09:44:28      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:ant   code   anti   ram   lin   led   recent   size   ret   

class RecentCounter {
    Queue<Integer> q;
    public RecentCounter() {
        q = new LinkedList<Integer>();
    }
    
    public int ping(int t) {
        int threshold = t - 3000;
        while (q.size() != 0 && q.peek() < threshold) {
            q.poll();
        }
        q.add(t);
        return q.size();
    }
}

/**
 * Your RecentCounter object will be instantiated and called as such:
 * RecentCounter obj = new RecentCounter();
 * int param_1 = obj.ping(t);
 */

leetcode 933. Number of Recent Calls

标签:ant   code   anti   ram   lin   led   recent   size   ret   

原文地址:https://www.cnblogs.com/exhausttolive/p/10612535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!