按值對映射進行排序
給定一個字串到整數的映射,最好按其值對映射進行降序排序
解決方案:
實作自訂排序介面即可實現此功能。以下程式碼提供了按值對映射進行排序所需的所有函數:
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] }
例如,使用給定的映射:
m := map[string]int{"hello": 10, "foo": 20, "bar": 20}
排序後的輸出將是:
foo, 20 bar, 20 hello, 10
以上是如何在 Go 中按值降序對字串-整數映射進行排序?的詳細內容。更多資訊請關注PHP中文網其他相關文章!