这类问题主要用到lambda排序
import collections
m=collections.Counter(s)
m=sorted(m.items(),key=lambda x: -x[1])
map<char, int> m
2021-09-08