码迷,mamicode.com
首页 > 其他好文 > 详细

数据结构相关模块(堆)

时间:2016-12-25 02:23:13      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:python      

如果学过数据结构就知道 堆排序,python提供了一个堆队列的模块heapq能很容易实现堆排序

heapd

如果要获取一个列表中N个最大最小的元素,heapd提供了两个函数:nlargest()nsmallest

import heapqnums = [1, 8, 2, 23, 7, -4, 18, 23, 42, 37, 2]
print(heapq.nlargest(3, nums)) # Prints [42, 37, 23]print(heapq.nsmallest(3, nums)) # Prints [-4, 1, 2]

两个函数都能接受一个关键字参数,用于更复杂的数据结构中:

portfolio = [{‘name‘: ‘IBM‘, ‘shares‘: 100, ‘price‘: 91.1},
             {‘name‘: ‘AAPL‘, ‘shares‘: 50, ‘price‘: 543.22},
             {‘name‘: ‘FB‘, ‘shares‘: 200, ‘price‘: 21.09},
             {‘name‘: ‘HPQ‘, ‘shares‘: 35, ‘price‘: 31.75},
             {‘name‘: ‘YHOO‘, ‘shares‘: 45, ‘price‘: 16.35},
             {‘name‘: ‘ACME‘, ‘shares‘: 75, ‘price‘: 115.65}]
cheap = heapq.nsmallest(3, portfolio, key=s[‘price‘])
expensive = heapq.nlargest(3, portfolio, key=s[‘price‘])


本文出自 “机制小风风” 博客,请务必保留此出处http://xiaofengfeng.blog.51cto.com/8193303/1885780

数据结构相关模块(堆)

标签:python      

原文地址:http://xiaofengfeng.blog.51cto.com/8193303/1885780

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!