d = {19: 7, 31: 6, 28: 5, 16: 5, 32: 5, 2: 4, 24: 4, 29: 4, 6: 4, 18: 4, 15: 4, 12: 4}
我是用 collections.Counter 排序的。
排序后字典中 value 是按降序的,它在我这里表示出现最少的概率,,
所以我只要最后一个 key (就是出现概率最少的 key )
o数据量也比较大,现在有几千条,以后可能会增加
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
d = {19: 7, 31: 6, 28: 5, 16: 5, 32: 5, 2: 4, 24: 4, 29: 4, 6: 4, 18: 4, 15: 4, 12: 4}
list(d)[-1]
时间复杂度O(n)
不知道这个是不是你想要的。