重复次数最多的前N个数字(从高到低排序 字典排序)
作者:互联网
'''
需求:给定一个只包含正整数且非空的数组,返回该数组中重复次数最多的前N个数字(返回结果按重复次数从多到少降序)
'''
a = [1, 6, 7, 4, 4, 5, 4, 5, 4, 5, 5, 6, 7, 8, 5, 6, 7, 3, 4, 2, 2, 1, 4, 8, 9, 4, 5, 6]
def num(a):
dic_num={}
for i in (a):
dic_num.update({'%s'%i:a.count(i)})
print(dic_num)
# 将键值对按值(数字出现的次数)排序 ---从高到低排序 字典排序
res = dict(sorted(dic_num.items(), key=lambda e: e[1],reverse=True))
print(res)
num(a)
输出
{'1': 2, '6': 4, '7': 3, '4': 7, '5': 6, '8': 2, '3': 1, '2': 2, '9': 1}
{'4': 7, '5': 6, '6': 4, '7': 3, '1': 2, '8': 2, '2': 2, '3': 1, '9': 1}
标签:res,dic,次数,num,print,高到,排序,字典 来源: https://blog.csdn.net/qq_42846555/article/details/120264691