如何按值對映射進行排序
在處理目標是對鍵值進行排序的映射時會出現此問題基於按降序排列的值的對。例如,給定一個像這樣的地圖:
map[string]int{ "hello": 10, "foo": 20, "bar": 20, }
人們可能想如下列印排序對:
foo, 20 bar, 20 hello, 10
解決方案
解決方案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] }
以上是如何按映射值的降序對映射進行排序?的詳細內容。更多資訊請關注PHP中文網其他相關文章!