首页 > 其他 > 详细

Get average stock price every 10 minutes

时间:2014-10-08 08:33:45      阅读:304      评论:0      收藏:0      [点我收藏+]

Write a class that displays average of stock prices for a given stock symbol for the last 10 minutes. We have a service that sends stock updates about 5000 times per second. The structure of the message is :

Message {
long timestamp;
String symbol; // E.g. AAPL
double price;
}

 

Idea: Use a buffer that has the capacity of 5000 * 60 * 10 messages. Then insert all the messages in to this buffer if the buffer has extra capacity. if the buffer is full, remove from the head and insert new messages from the tail. When the get average price is called, we calculate all the messages in this buffer.

 

Get average stock price every 10 minutes

原文:http://www.cnblogs.com/leetcode/p/4010400.html

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