Tagged Questions
The ordereddictionary tag has no wiki summary.
11
votes
4answers
3k views
No generic implementation of OrderedDictionary?
I'm using .NET 3.5. I think I know the answer to this, but am looking for confirmation so should be a quick one!
There doesn't appear to be a generic implementation of OrderedDictionary (which is in ...
9
votes
3answers
333 views
Can I get JSON to load into an OrderedDict in Python?
Ok so I can use an OrderedDict in json.dump. That is, an OrderedDict can be used as an input to JSON.
But can it be used as an output? If so how? In my case I'd like to load into an OrderedDict so I ...
7
votes
5answers
1k views
Any way to properly pretty-print ordered dictionaries in Python?
I like the pprint module in Python. I use it a lot for testing and debugging. I frequently use the width option to make sure the output fits nicely within my terminal window.
It has worked fine until ...
6
votes
1answer
486 views
Why no generic implementation of OrderedDictionary? [closed]
Why is there no generic implementation of OrderedDictionary?
Prior to posting this message, i did see:
http://stackoverflow.com/questions/2629027/no-generic-implementation-of-ordereddictionary
But ...
6
votes
8answers
993 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't really retrieve by ...
4
votes
3answers
128 views
Is possible to override the {…} notation so i get an OrderedDict() instead of a dict()?
EDIT:
I want to use a .py file like a config file.
So using the {...} notation i can create a dictionary using string as keys but the definition order is lost in a standard python dictionary.
My ...
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 ...
4
votes
1answer
2k 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):
self.__dict__ = ...
3
votes
1answer
623 views
C# Ordered dictionary index
I am considering of using the OrderedDictionary. As a key I want to use a long value (id) and the value will be a custom object.
I use the OrderedDictionary because I want to get an object by it's Id ...
3
votes
1answer
2k views
how to get key from OrderedDictionary in C# by index?
How to get the key and value of item from OrderedDictionary by index?
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 ...
2
votes
1answer
223 views
Using linq on OrderedDictionary to obtain max with GridView
I have a custom GridView control (inherits system.web.ui.webcontrols.gridview) and I would like to control the value of a TextBox based on values recently inserted by the user (inserted values are not ...
1
vote
2answers
156 views
Python OrderedDict ordered by date
I am trying to use an OrderedDict (Raymond Hettingers version for pre2.7 Python) where my keys are dates. However it does not order them correctly, I imagine it may be ordering based on the ID.
Does ...
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
...
0
votes
2answers
65 views
Mapping dictionary with rows values
My problem is how to map dictionary values to row indices. I have a dictionary like:
ordered_dict = OrderedDict(1:"id", 2:"name", 3:"address", 4:"salary")
And I got rows from a select query like:
...
0
votes
2answers
120 views
How to know the position of items in a Python's ordered dictionary
Can we know the position of items in Python's ordered dictionary ?
For example:
If I have dictionary :
// Ordered_dict is OrderedDictionary
Ordered_dict = {"fruit": "banana", "drinks": "water", ...
0
votes
3answers
107 views
Find lines beginning with same string and keep last occurance
I have this data:
E 71484666NC 1201011060240260 387802-1227810 1022 25 0 5 2 313D 0 1G5
E 71484666NC 1201011060240263 387902-1227910 1300 10 0 2 1 300D 0 1A5
E 10115693AK ...
0
votes
1answer
106 views
How can I make a deep-copy of a read only OrderedDictionary with keys and values being strings that is no longer read only?
The orderedDictionary instantiation is this:
IOrderedDictionary orderedDictionary= gridview.DataKeys[index].Values;
orderedDictionary is read only.
How can I make a deep copy of orderedDictionary ...
0
votes
3answers
233 views
The OrderedDictionary is read only and cannot be modified
Q:
When i try the following code :
((IOrderedDictionary)Session["keys"])[2] = objToUpdate.Note_title;
((IOrderedDictionary)Session["keys"])[3] = objToUpdate.Iscourse;
It throws an exception:
...
0
votes
1answer
401 views
Using a list as a datasource for datagridview
I've extracted the setting names and their respective values out of a configuration file into an ordered dictionary. The dictionary contains keys and values which are of the ICollection class. I want ...
0
votes
2answers
143 views
Saving/Loading OrderedDictionary to Session
I am trying to save the OrderedDictionary into the session and reload it.
basically, it is a "Last Played" game list.
for some reason, the dictionary is allays NEW .... anyone can pinpoint the ...