What would be the most appropriate data structure for the following scenario: The stock quotes (scrip code,price) would need to be collated.Every hour,the top N scrips(highest quote) need to be reported in descending order. Potentially,the number of quotes can be millions within the hour. An arraylist with comparator will be a disaster due to the frequent inserts. A TreeSet seems to be an option - but can someone suggest a better structure,if there is one. (And that can include building on a generic data structure ,rather than using the existing java collection classes too.)
closed as not constructive by John3136, bažmegakapa, Aleks G, Nik...., M42 Oct 18 '12 at 9:46
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
From personal experience writing a real-time price feed, if speed is an issue it is worth it to take up some extra memory. I would honestly suggest hashing your price feed by price or order ID if that is at all feasible. Also, if I understand you correctly, you want to display the top N prices for a symbol. While there may be millions of orders over these N prices, they can each be collated into one of N price levels. Thus, if you make a price level object, your data structure would just have to shuffle around pointers to these price level objects. In this case, as long as N is not too large (as there aren't usually that many price levels for a particular symbol) an array might be plenty fast with locality. I would also think that using a circular array would be a decent solution for displaying a price-level book, if you don't want to hash it. That way insertion at the front (i.e. the lowest price) and the end (the highest) should be both be constant time on average. You can also use a shadow array to ensure O(1) constant time insertion. |
|||
|
|
I can't suggest anything besides For example:
Note that this example isn't thread-safe. |
||||
|