Tagged Questions

5
votes
8answers
517 views

What is the best data structure in .NET for look-up by string key or numeric index?

I'm looking for the most ideal data structure (for performance and ease of use) from which values can be retrieved by string key or index. Dictionary doesn't work because you can' …
2
votes
1answer
395 views

Using an ordered dict as object dictionary in python

I don't know why this doesn't work: I'm using the odict class from PEP 372, but I want to use it as a __dict__ member, i.e.: class Bag(object): def __init__(self): se …
1
vote
1answer
291 views

What is the best ordered dict implementation in python?

I've seen (and written) a number of implementations of this. Is there one that is considered the best or is emerging as a standard? What I mean by ordered dict is that the object …