2 回答
TA贡献1880条经验 获得超4个赞
它期望int而不是float64因为i, j是用于比较和交换切片中的元素的索引。我建议你应该使用一个新的结构并为它实现 sort.Interface:
type MapData struct {
Key string
Value float64
}
type MapSort []*MapData
func (m MapSort) Len() int {
return len(m)
}
func (m MapSort) Less(i, j int) bool {
return m[i].Value < m[j].Value
}
func (m MapSort) Swap(i, j int) {
m[i], m[j] = m[j], m[i]
}
TA贡献1815条经验 获得超13个赞
这是我用来成功排序的内容:
package main
import (
"fmt"
"math"
"sort"
)
// round a float64 to 2 decimal places.
func round(n float64) float64 {
return math.Round(n*100) / 100
}
type Pair struct {
Key string
Value float64
}
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] }
func main() {
data := make(map[string]float64)
data["red"] = 1.00
data["green"] = 3.00
data["blue"] = 2.00
var i int
sorted := make(PairList, len(data))
for key, value := range data {
sorted[i] = Pair{key, value}
i++
}
sort.Sort(sort.Reverse(sorted))
for _, pair := range sorted {
fmt.Printf("%s %v\n", pair.Key, round(pair.Value))
}
}
- 2 回答
- 0 关注
- 132 浏览
添加回答
举报