Tagged Questions
4
votes
3answers
194 views
Is there any alternative of Dictionary in .NET?
I have a requirement of using a dictionary in the project but as we know that they are only accessible using the keys and not using the indexes, and I want to access the items in dictionary using ...
3
votes
2answers
1k 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 has some concept of ...
0
votes
4answers
75 views
Get first N key pairs from an Ordered Dictionary to another one in python
I have an ordered dictionary (OrderedDict) sorted by value. How can I get the top (say 25) key values and add them to a new dictionary?
For example: I have something like this
...