在 Go 中按 Map 的值对 Map 进行排序
在 Go 中按 Map 的值对 Map 进行排序需要排序接口的自定义实现。这是一个实现 PairList 类型并定义排序所需函数的解决方案:
<br>funcrankByWordCount(wordFrequencies map[string]int) PairList {<br> pl := make(PairList, len(wordFrequencies))<br> i := 0<br> 对于 k, v := range wordFrequencies {<pre class="brush:php;toolbar:false">pl[i] = Pair{k, v} i++
}
sort.Sort(sort.Reverse(pl))
return pl
}
type Pair struct {
键字符串
值int
}
type PairList []Pair
func (p PairList) Len() int { return len(p) }
func (p PairList) Less(i, j int) bool { return p[i].Value func (p PairList) Swap(i, j int){ p[i], p[j] = p[j], p[i] }
使用rankByWordCount函数,您可以将地图排序为如下:
<br>wordFrequencies := map[string]int{<br> "hello": 10,<br> "foo": 20,<br> "bar": 20 ,<br>}<p>排序对 := rankByWordCount(wordFrequencies)</p><p>for _,pair := rangesortedPairs {<br>fmt.Println(pair.Key, pair.Value)<br>}<br>
输出:
<br>foo 20<br>bar 20<br>hello 10<br>
以上是如何按值对 Go 地图进行排序?的详细内容。更多信息请关注PHP中文网其他相关文章!