siramix / buzzwords

A mobile word game that will change the word.
www.siramix.com/buzzwords
GNU General Public License v3.0
10 stars 1 forks source link

Review when we use LinkedList<Card> for large sets #62

Closed lucasrowe closed 11 years ago

lucasrowe commented 12 years ago

We have a few instances where we user LinkedList but perform a lot of gets. It may be a wash between gets and add/removes but we should see if pursuing a list makes sense. Just to make sure we're using the right data structure for our larger sets of data.

lucasrowe commented 12 years ago

If we decide this is a non-issue I need to correct the Lists in Deck.

lucasrowe commented 11 years ago

Closing issue. We use linkedlist everywhere now and will continue to.