I am making an app where I need to process lots of strings, and I really need the O(1) performance of the hashmap (I use dictionary), for instance aDictionary["aString"]. The only slight problem is that I need to keep track of the order of things.
Basicly I need the linkedList attribute go-to-next, also O(1). I could just have a list and a dictionay, the way things work, but it is more appealing to have one collection that give me both attributes in one. Do you know of any?
I hope this is an understandable description.
Thanks for any and all help :)