Python 优先级字典SortedDict 用法实例

Posted 软件工程小施同学

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 优先级字典SortedDict 用法实例相关的知识,希望对你有一定的参考价值。

安装

sudo pip install sortedcontainers

用法示例


# -*- coding: utf-8 -*
# 导入模块库
from sortedcontainers import SortedDict

# 初始化
sorted_dict = SortedDict(1: 'a', 4: 'd', 2: 'b')

# 打印整个sorted-list
print('sorted dict is: ', sorted_dict)

# 增加一个元素
sorted_dict[3] = 'c'

# 再次打印整个sorted-list
print('sorted dict after adding an element: ', sorted_dict)

del sorted_dict[2]

# 再次打印整个sorted-list
print('sorted dict after deleting an element: ', sorted_dict)

# 获取key list
print('get the key list', sorted_dict.keys())

# 获取最小key
print('get the min key', sorted_dict.keys()[0])

# 获取最大key
print('get the max key', sorted_dict.keys()[-1])

# 删除最大key
maxKey = sorted_dict.keys()[-1]
sorted_dict.pop(maxKey)

# 再次打印整个sorted-list
print('sorted dict after adding an element: ', sorted_dict)

# 删除所有
sorted_dict.clear()

print('sorted dict after removing all elements: ', sorted_dict)

原文:https://blog.csdn.net/hgq522/article/details/122375627

以上是关于Python 优先级字典SortedDict 用法实例的主要内容,如果未能解决你的问题,请参考以下文章

python SortedDict 遍历删除 不对

用python类方法处理参数

在 django 模板中循环排序字典特定次数

python 字典的用法

python字典的用法

浅谈python 字典对象的 Pythonic 用法