Tagged Questions

A dictionary in programming is a collection of keys and values allowing efficient value lookup given the key.

learn more… | top users | synonyms (1)

141
votes
11answers
50k views

How can I merge two Python dictionaries as a single expression?

I have two Python dictionaries, and I want to write a single expression that returns these two dictionaries, merged. The update() method would be what I need, if it returned its result instead of ...
117
votes
17answers
71k views

Python: Sort a dictionary by value

I have a dictionary of values read from 2 fields in a database: a string field and a numeric field. The string field is unique so that is the key of the dictionary. I can sort on the keys, but how ...
95
votes
10answers
73k views

What is the best way to iterate over a Dictionary in C#?

I've seen a few different ways to iterate over a Dictionary in C#. Is there a standard way?
88
votes
9answers
41k views

In Python how do I sort a list of dictionaries by values of the dictionary?

I got a list of dictionaries and want that to be sorted by a value of that dictionary. This [{'name':'Homer', 'age':39}, {'name':'Bart', 'age':10}] sorted by name, should become [{'name':'Bart', ...
53
votes
4answers
35k views

.NET HashTable Vs Dictionary - Can the Dictionary be as fast?

I am trying to figure out when and why to use a Dictionary or a HashTable. I have done a bit of a search on here and have found people talking about the generic advantages of the Dictionary which I ...
49
votes
3answers
8k views

Python: create a dictionary with list comprehension

I like the python list comprehension operator (or idiom, or whatever it is). Can it be used to create dictionaries too? For example, by iterating over pairs of keys and values: dict = {(k,v) for ...
48
votes
14answers
10k views

Convert Python dict to object

I'm searching for an elegant way to convert a normal Python dict with some nested dicts to an object. For example: >>> d = {'a': 1, 'b': {'c': 2}, 'd': ["hi", {'foo': "bar"}]} Should be ...
48
votes
11answers
11k views

Is there a read-only generic dictionary available in .NET?

I'm returning a reference to a dictionary in my read only property. How do I prevent consumers from changing my data? If this were an IList I could simply return it AsReadOnly. Is there something ...
46
votes
3answers
31k views

Collection was modified; enumeration operation may not execute

I can't get to the bottom of this error, because when the debugger is attached, it does not seem to occur. Below is the code. This is a WCF server in a Windows service. The method NotifySubscribers ...
45
votes
8answers
21k views

Merging dictionaries in C#

What's the best way to merge 2 or more dictionaries (Dictionary<T1,T2>) in C#? (3.0 features like LINQ are fine). I'm thinking of a method signature along the lines of: public static ...
42
votes
5answers
881 views

Optimising Python dictionary access code

Question: I've profiled my Python program to death, and there is one function that is slowing everything down. It uses Python dictionaries heavily, so I may not have used them in the best way. If I ...
42
votes
16answers
25k views

Duplicate keys in .NET dictionaries?

Are there any dictionary classes in the .NET base class library which allow duplicate keys to be used? The only solution I've found is to create, for example, a class like: Dictionary<string, ...
40
votes
9answers
48k views

Python: how to check if a given index in a dict exists yet?

Given a dict, how can I find out if a given index in that dict has already been set to a non-None value? I.e., I want to do this: my_dict = {} if (my_dict[some_value] != None): ...
40
votes
4answers
12k views

Map two lists into a dictionary in Python

Imagine that you have: keys = ('name', 'age', 'food') values = ('Monty', 42, 'spam') What is the simplest way to produce the following dictionary ? dict = {'name' : 'Monty', 'age' : 42, 'food' : ...
39
votes
12answers
10k views

Does C# have a way of giving me an immutable Dictionary?

Is there anything built into the core C# libraries that can give me an immutable Dictionary? Something along the lines of Java's: Collections.unmodifiableMap(myMap); And just to clarify, I am ...
35
votes
5answers
13k views

What is a good way to test if a Key exists in Python Dictionary

I wanted to test if a key exists in a dictionary before updating the value for the key. I wrote the following code: if 'key1' in dict.keys(): print "blah" else: print "boo" I think this is not ...
35
votes
5answers
18k views

Python dictionary from an object's fields

Do you know if there is a built-in function to build a dictionary from an arbitrary object? I'd like to do something like this: >>> class Foo: ... bar = 'hello' ... baz = 'world' ... ...
33
votes
3answers
43k views

how to use Dictionary or Hashtable in Javascript? [closed]

Possible Duplicate: Can anyone recommend a good Hashtable implementation in Javascript? Hello everyone, I want to calculate/store some statistics information using JavaScript, the equivalent ...
32
votes
3answers
29k views

LINQ query to return a Dictionary<string, string>

I have a collection of MyClass that I'd like to query using LINQ to get distinct values, and get back a Dictionary<string, string> as the result, but I can't figure out how I can do it any simpler ...
31
votes
7answers
12k views

Python reverse / inverse a mapping

Given a dictionary like so: map = { 'a': 1, 'b':2 } How can one invert this map to get: inv_map = { 1: 'a', 2: 'b' }
30
votes
6answers
14k views

Why isn't there an XML-serializable dictionary in .NET?

I need an XML-serializable dictionary. Actually, I now have two quite different programs that need one. I was rather surprised to see that .NET doesn't have one. I asked the question elsewhere and ...
29
votes
6answers
1k views

Why is a Dictionary “not ordered”?

I have read this in answer to many questions on here. But what exactly does it mean? var test = new Dictionary<int, string>(); test.Add(0, "zero"); test.Add(1, "one"); test.Add(2, "two"); ...
29
votes
6answers
32k views

Add to a dictionary in python?

Is it possible to add a key to a python dictionary after it has been created? It doesn't seem to have an .add() method...
29
votes
6answers
13k views

Converting a String to Dictionary?

How can i convert the following: s = "{'muffin' : 'lolz', 'foo' : 'kitty'}" Into a dictionary object? I'd prefer not to use eval() what should i do? The main reason for this, is one of my ...
27
votes
6answers
22k views

Does VBA have Dictionary structure?

Does VBA have dictionary structure? Like key<>value array?
26
votes
5answers
15k views

Python - Create a list with initial capacity

Code like this often happens: l = [] while foo: #baz l.append(bar) #qux This is really slow if you're about to append thousands of elements to your list, as the list will have to ...
24
votes
3answers
2k views

Dictionary returning a default value if the key does not exist

I find myself using the current pattern quite often in my code nowadays var dictionary = new Dictionary<type, IList<othertype>>(); // Add stuff to dictionary var somethingElse = ...
22
votes
6answers
4k views

StringDictionary vs Dictionary<string, string>

Does anyone have any idea what the practical differences are between the System.Collections.Specialized.StringDictionary object and System.Collections.Generic.Dictionary? I've used them both in the ...
22
votes
3answers
2k views

Dictionary / List of words

What is the biggest / largest / best list of words in the English language? Something in a simple text file would be great.
22
votes
5answers
5k views

How to get the FxCop custom dictionary to work?

How is it possible to get the FxCop custom dictionary to work correctly? I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same folder as the FxCop ...
21
votes
2answers
1k views

Why do you have to call .iteritems() when iterating over a dictionary in python?

Why do you have to call iteritems() to iterate over key, value pairs in a dictionary? ie dic = {'one':'1', 'two':'2'} for k, v in dic.iteritems(): print k, v Why isn't that the default ...
21
votes
9answers
20k views

How to define hash tables in bash?

Just what title says. I am surprised by insufficiency of results in Google search for this question! What I want to is the equivalent of Python dictionaries but in bash (and hence, should work across ...
21
votes
4answers
14k views

C# DropDownList with a Dictionary as DataSource

I want to set DataTextField and DataValueField of a Dropdownlist (languageList) using a Dictionary (list) of languageCod (en-gb) as key and language name (english) as the text to display. Relevant ...
21
votes
4answers
13k views

Is a Python dictionary an example of a hash table?

One of the basic data structures in Python is the dictionary, which allows one to record "keys" for looking up "values" of any type. Is this implemented internally as a hash table? If not, what is ...
20
votes
8answers
5k views

Random Python dictionary key, weighted by values

I have a dictionary where each key has a list of variable length, eg: d = { 'a': [1, 3, 2], 'b': [6], 'c': [0, 0] } Is there a clean way to get a random dictionary key, weighted by the length of ...
19
votes
10answers
3k views

Why can't you use null as a key for a Dictionary<bool?, string>?

Apparently, you cannot use a null for a key, even if your key is a nullable type. This code: var nullableBoolLabels = new System.Collections.Generic.Dictionary<bool?, string> { { true, ...
19
votes
5answers
10k views

Python “extend” for a dictionary

Which is the best way to extend a dictionary with another one? For instance: >>> a = { "a" : 1, "b" : 2 } >>> b = { "c" : 3, "d" : 4 } >>> a {'a': 1, 'b': 2} >>> b ...
19
votes
4answers
12k views

Passing a dictionary to a function in python as keyword parameters

I'd like to call a function in python using a dictionary. Here is some code: d = dict(param='test') def f(param): print param f(d) This prints {'param': 'test'} but I'd like it to just print ...
19
votes
5answers
9k views

Getting key with maximum value in dictionary?

I have a dictionary: keys are strings, values are integers. Example: stats = {'a':1000, 'b':3000, 'c': 100}. I'd like to get 'b' as an answer, since it's the key with a higher value. I did the ...
18
votes
5answers
667 views

Use cases for the 'setdefault' dict method

The addition of collections.defaultdict in Python 2.5 greatly reduced the need for dict's setdefault method. This question is for our collective education: What is setdefault still useful for, today ...
18
votes
4answers
19k views

Python creating a dictionary of lists

I want to create a dictionary whose values are lists. For example: {1: ['1'], 2: ['1', '2'], 3: ['2']} If I do: d = dict() a = ['1', '2'] for i in a: for j in range(int(i), int(i) + 2): ...
18
votes
2answers
7k views

Splitting a semicolon-separated string to a dictionary, in Python

I have a string that looks like this: "Name1=Value1;Name2=Value2;Name3=Value3" Is there a built-in class/function in Python that will take that string and construct a dictionary, as though I had ...
17
votes
4answers
6k views

Using an object as a generic Dictionary key in .net

If I want to use objects as the keys for a Dictionary, what methods will I need to override to make them compare in a specific way? Say I have a a class which has properties: class Foo { public ...
17
votes
7answers
10k views

Creating a constant Dictionary in C#

What is the most efficient way to create a constant (never changes at runtime) mapping of strings to ints? I've tried using a const Dictionary, but that didn't work out. I could implement a ...
17
votes
9answers
3k views

Python Disk-Based Dictionary

I was running some dynamic programming code (trying to brute-force disprove the Collatz conjecture =P) and I was using a dict to store the lengths of the chains I had already computed. Obviously, it ...
17
votes
4answers
12k views

Dictionary API or Library

Does anyone know of a good dictionary API or ruby library to lookup the definitions of words? I'm thinking it should work something like: I call get_definition(word) It returns the definition for ...
16
votes
3answers
2k views

C# Store functions in a Dictionary

How do I create a Dictionary where I can store functions? Thanks. I have about 30+ functions which can be executed from the user. I want to be able to execute the function this way: private void ...
16
votes
5answers
2k views

Python: What's a correct and good way to implement __hash__()?

What's a correct and good way to implement __hash__()? I am talking about the function that returns a hashcode that is then used to insert objects into hashtables aka dictionaries. As __hash__() ...
16
votes
7answers
20k views

How do I count javascript object's attributes?

Suppose I have the following object in javascript: var object = {"key1":"value1","key2":"value2","key3":"value3"}; How do I find out how many tuples I have in the dictionary?
16
votes
10answers
2k views

python: How do I check that multiple keys are in a dict in one go?

I want to do something like: foo = {'foo':1,'zip':2,'zam':3,'bar':4} if ("foo","bar") in foo: #do stuff I'm not sure if its possible but would like to know. :-)

1 2 3 4 5 66