หากฉันมีพจนานุกรม Python ฉันจะรับกุญแจไปยังรายการที่มีค่าต่ำสุดได้อย่างไร
ฉันคิดว่าจะทำอะไรกับmin()
ฟังก์ชั่น ...
รับอินพุต:
{320:1, 321:0, 322:3}
321
มันจะกลับมา
หากฉันมีพจนานุกรม Python ฉันจะรับกุญแจไปยังรายการที่มีค่าต่ำสุดได้อย่างไร
ฉันคิดว่าจะทำอะไรกับmin()
ฟังก์ชั่น ...
รับอินพุต:
{320:1, 321:0, 322:3}
321
มันจะกลับมา
คำตอบ:
ดีที่สุด: min(d, key=d.get)
- ไม่มีเหตุผลในการแทรกlambda
เลเยอร์ทางอ้อมที่ไร้ประโยชน์หรือแยกไอเท็มหรือคีย์ออก!
[11, 22, 33]
{1: 11, 2:22, 3:33}
'd.get' นั้นถูกต้องสำหรับพจนานุกรม แต่ไม่ใช่สำหรับรายการ
d={"a":[10, None], "b":[20, None]}
ที่คำนวณ min ได้จาก d [key] [0]
min()
ส่งคืนค่าในค่าแรกในการเรียงลำดับ สำคัญกำหนดวิธีการเรียงลำดับค่า key=d.get
หมายถึงรายการจะถูกจัดเรียงตามค่าของพจนานุกรม
ต่อไปนี้เป็นคำตอบที่ให้คำตอบสำหรับ OP จริง ๆ :
>>> d = {320:1, 321:0, 322:3}
>>> d.items()
[(320, 1), (321, 0), (322, 3)]
>>> # find the minimum by comparing the second element of each tuple
>>> min(d.items(), key=lambda x: x[1])
(321, 0)
อย่างไรก็ตามการใช้d.iteritems()
จะมีประสิทธิภาพมากขึ้นสำหรับพจนานุกรมขนาดใหญ่
operator.itemgetter(1)
แทนที่จะแลมบ์ดาคุณสามารถใช้
สำหรับหลายคีย์ที่มีค่าต่ำสุดเท่ากันคุณสามารถใช้ list comprehension:
d = {320:1, 321:0, 322:3, 323:0}
minval = min(d.values())
res = [k for k, v in d.items() if v==minval]
[321, 323]
รุ่นที่ใช้งานได้เทียบเท่า:
res = list(filter(lambda x: d[x]==minval, d))
min(d.items(), key=lambda x: x[1])[0]
>>> d = {320:1, 321:0, 322:3}
>>> min(d, key=lambda k: d[k])
321
key=d.get
ดีกว่า
สำหรับกรณีที่คุณมีปุ่มน้อยที่สุดหลายปุ่มและต้องการให้มันง่าย
def minimums(some_dict):
positions = [] # output variable
min_value = float("inf")
for k, v in some_dict.items():
if v == min_value:
positions.append(k)
if v < min_value:
min_value = v
positions = [] # output variable
positions.append(k)
return positions
minimums({'a':1, 'b':2, 'c':-1, 'd':0, 'e':-1})
['e', 'c']
หากคุณไม่แน่ใจว่าคุณไม่มีค่าต่ำสุดหลายค่าฉันขอแนะนำ:
d = {320:1, 321:0, 322:3, 323:0}
print ', '.join(str(key) for min_value in (min(d.values()),) for key in d if d[key]==min_value)
"""Output:
321, 323
"""
แก้ไข:นี่คือคำตอบสำหรับคำถามดั้งเดิมของ OP เกี่ยวกับคีย์ขั้นต่ำไม่ใช่คำตอบขั้นต่ำ
คุณสามารถรับคีย์ของ dict โดยใช้keys
ฟังก์ชันและคุณถูกต้องเกี่ยวกับการใช้min
เพื่อค้นหาขั้นต่ำของรายการนั้น
อีกวิธีในการแก้ไขปัญหาของหลาย ๆ คีย์ด้วยค่า min ขั้นต่ำ:
>>> dd = {320:1, 321:0, 322:3, 323:0}
>>>
>>> from itertools import groupby
>>> from operator import itemgetter
>>>
>>> print [v for k,v in groupby(sorted((v,k) for k,v in dd.iteritems()), key=itemgetter(0)).next()[1]]
[321, 323]
ใช้min
กับ iterator (สำหรับ python 3 ใช้items
แทนiteritems
); แทนที่จะเป็นแลมบ์ดาให้ใช้ตัวitemgetter
ดำเนินการจากซึ่งเร็วกว่าแลมบ์ดา
from operator import itemgetter
min_key, _ = min(d.iteritems(), key=itemgetter(1))
d={}
d[320]=1
d[321]=0
d[322]=3
value = min(d.values())
for k in d.keys():
if d[k] == value:
print k,d[k]
ฉันเปรียบเทียบการทำงานของสามตัวเลือกต่อไปนี้:
import random, datetime
myDict = {}
for i in range( 10000000 ):
myDict[ i ] = random.randint( 0, 10000000 )
# OPTION 1
start = datetime.datetime.now()
sorted = []
for i in myDict:
sorted.append( ( i, myDict[ i ] ) )
sorted.sort( key = lambda x: x[1] )
print( sorted[0][0] )
end = datetime.datetime.now()
print( end - start )
# OPTION 2
start = datetime.datetime.now()
myDict_values = list( myDict.values() )
myDict_keys = list( myDict.keys() )
min_value = min( myDict_values )
print( myDict_keys[ myDict_values.index( min_value ) ] )
end = datetime.datetime.now()
print( end - start )
# OPTION 3
start = datetime.datetime.now()
print( min( myDict, key=myDict.get ) )
end = datetime.datetime.now()
print( end - start )
ตัวอย่างผลลัพธ์:
#option 1
236230
0:00:14.136808
#option 2
236230
0:00:00.458026
#option 3
236230
0:00:00.824048
ในการสร้างคลาสที่สามารถสั่งซื้อได้คุณจะต้องแทนที่ฟังก์ชั่นพิเศษ 6 ฟังก์ชั่นดังนั้นมันจะถูกเรียกโดยฟังก์ชัน min ()
วิธีการเหล่านี้อยู่__lt__ , __le__, __gt__, __ge__, __eq__ , __ne__
ในลำดับที่น้อยกว่าน้อยกว่าหรือเท่ากับมากกว่ามากกว่าหรือเท่ากับเท่ากันไม่เท่ากัน ตัวอย่างเช่นคุณควรใช้__lt__
ดังนี้:
def __lt__(self, other):
return self.comparable_value < other.comparable_value
จากนั้นคุณสามารถใช้ฟังก์ชัน min ดังนี้:
minValue = min(yourList, key=(lambda k: yourList[k]))
สิ่งนี้ใช้ได้สำหรับฉัน
min(zip(d.values(), d.keys()))[1]
ใช้ฟังก์ชัน zip เพื่อสร้างตัววนซ้ำของ tuples ที่มีค่าและคีย์ จากนั้นห่อมันด้วยฟังก์ชั่นขั้นต่ำซึ่งใช้เวลาน้อยที่สุดตามคีย์แรก สิ่งนี้จะคืนค่า tuple ที่มีคู่ (value, key) ดัชนีของ [1] ใช้เพื่อรับคีย์ที่สอดคล้องกัน
# python
d={320:1, 321:0, 322:3}
reduce(lambda x,y: x if d[x]<=d[y] else y, d.iterkeys())
321
min()
) อีกครั้ง
นี่คือสิ่งที่คุณกำลังมองหา?
d = dict()
d[15.0]='fifteen'
d[14.0]='fourteen'
d[14.5]='fourteenandhalf'
print d[min(d.keys())]
พิมพ์ 'สิบสี่'