I'm trying to implement an fast lookup for sorted tuples in a dictionary; something that answers the question "Does the tuple (3,8) have an associated value, and if yes, what is it?". Let the integers in the tuples be bound from below by 0 and from above by max_int.
I went ahead and used Python's dict but found that to be pretty slow. Another approach to this problem would be to create a list T with max_int (mostly empty) dicts, and for each tuple (3,8) put T[3][8] = value. I though this is exactly the bucket-hash approach that Python takes with dicts, but the latter is about 30 times (!) faster here.
Also, though, it's ugly (especially since I'm now about to implement 3-tuples), so I'd much appreciate some hints here.
For reference, Here's the code I used to get the timings:
import numpy as np
import time
# create a bunch of sorted tuples
num_tuples = 10
max_int = 100
a = np.random.rand(num_tuples,2) * max_int
a = a.astype(int)
for k in xrange(len(a)):
a[k] = np.sort(a[k])
# create dictionary with tuples as keys
d = {}
for t in a:
d[tuple(t)] = 42
print d
# do some lookups
m = 100000
start_time = time.time()
for k in xrange(m):
(3,8) in d.keys()
elapsed = time.time() - start_time
print elapsed
# now create the bucket-list structure mentioned above
t = [{} for k in xrange(max_int)]
for k in xrange(len(a)):
t[a[k][0]][a[k][1]] = 42
print t
# do some lookups
m = 10000
start_time = time.time()
for k in xrange(m):
8 in t[3].keys()
elapsed = time.time() - start_time
print elapsed
in d.keys()instead ofin d; for me that lowered the times from 1.11s/0.003s to 0.018s/0.0017s. If you're leaving optimizations like that on the table it's silly to be worried about speed. – DSM Feb 19 '12 at 14:33timeitto perform your benchmarks. Way easier. – Joel Cornett Feb 19 '12 at 15:51