t**r 发帖数: 3428 | 1 问个题目,函数foo() 返回1或者0。 如果10s内被调用10此以上 返回1,否则0
不考虑多线程 怎么写这个好? | h*******e 发帖数: 1377 | 2 保留十个调用时间循环数组。最后减去第一个看是不是大于十秒 | t**r 发帖数: 3428 | 3 right. thanks
use a fixed size list to maintain this, Then each time, do list.back() -
list.front() to check if this is greater than 10s.
THanks
【在 h*******e 的大作中提到】 : 保留十个调用时间循环数组。最后减去第一个看是不是大于十秒
|
|