在 Go 中,给定的 Map,其中键为 string 类型,值为 int 类型,可以根据其值进行降序排序顺序。
考虑以下内容map:
map[string]int{"hello": 10, "foo": 20, "bar": 20}
目标是将排序后的键值对打印为:
foo, 20 bar, 20 hello, 10
为了实现这种排序,需要实现Go排序接口是必需的。这是通过定义 Len()、Less() 和 Swap() 函数来完成的:
func rankByWordCount(wordFrequencies map[string]int) PairList { pl := make(PairList, len(wordFrequencies)) i := 0 for k, v := range wordFrequencies { pl[i] = Pair{k, v} i++ } sort.Sort(sort.Reverse(pl)) return pl } type Pair struct { Key string Value int } type PairList []Pair func (p PairList) Len() int { return len(p) } func (p PairList) Less(i, j int) bool { return p[i].Value < p[j].Value } func (p PairList) Swap(i, j int){ p[i], p[j] = p[j], p[i] }
通过实现排序接口并利用 sort.Reverse 函数,在 Go 中,map 可以根据值进行有效排序,从而实现各种排序场景。
以上是如何按 Go Map 的整数值降序对 Go Map 进行排序?的详细内容。更多信息请关注PHP中文网其他相关文章!