Custom dictionary lookup in Python

前端 未结 3 1022
时光说笑
时光说笑 2021-02-05 18:04

if I have a dictionary like this

>>> d = {10: 3, 100: 2, 1000: 1}

I can type something like:

>>> d.get(10), d         


        
3条回答
  •  滥情空心
    2021-02-05 18:52

    bisect module allows fast lookup of insertion position in a sorted list.

    from bisect import bisect_right
    
    def closest_matches(data, query):
        keys = sorted(data)
        return [data[i] for i in (min(map(abs, (keys[p-1], keys[p]))) for p in (bisect_right(keys, k) for k in query))]
    
    >>> d = {10: 3, 100: 2, 1000: 1}
    >>> closest_matches(d, [20, 60, 200])
    [3, 3, 2]
    

提交回复
热议问题