drmg17928 2019-07-19 15:20
浏览 22
已采纳

如何按两个值对地图排序?

I am trying to sort a map by two of its values. First by the timestamp and then by the nonce. In other words, I need to be able to iterate and print the map with the smallest timestamp first, followed by the nonce value. Like this:

    "tx1": Transaction{Value:10, Nonce:1, Timestamp:1563543005},
    "tx2": Transaction{Value:20, Nonce:2, Timestamp:1563543005},
    "tx6": Transaction{Value:60, Nonce:2, Timestamp:1563543005},
    "tx5": Transaction{Value:50, Nonce:4, Timestamp:1563543005},
    "tx7": Transaction{Value:70, Nonce:1, Timestamp:1563543006},
    "tx3": Transaction{Value:30, Nonce:3, Timestamp:1563543006},
    "tx4": Transaction{Value:40, Nonce:4, Timestamp:1563543006},

Here is my code:

https://play.golang.org/p/hXo5clCrlU1

package main

import (
    "fmt"
    "sort"
)

type Transaction struct {
    Value         uint64                        `json:"value"`
    Nonce         uint64                        `json:"nonce"`
    Timestamp     int64                         `json:"timestamp"`
}

func main() {
    // To create a map as input
    memPool := map[string]Transaction {
        "tx1": Transaction{Value:10, Nonce:1, Timestamp:1563543005},
        "tx2": Transaction{Value:20, Nonce:2, Timestamp:1563543005},
        "tx3": Transaction{Value:30, Nonce:3, Timestamp:1563543006},
        "tx4": Transaction{Value:40, Nonce:4, Timestamp:1563543006},
        "tx5": Transaction{Value:50, Nonce:4, Timestamp:1563543005},
        "tx6": Transaction{Value:60, Nonce:2, Timestamp:1563543005},
        "tx7": Transaction{Value:70, Nonce:1, Timestamp:1563543006},
    }


    keys := make([]string, 0, len(memPool))
        for key := range memPool {
            keys = append(keys, key)
        }

        sort.Slice(keys, func(i, j int) bool { return memPool[keys[i]].Timestamp > memPool[keys[j]].Timestamp })


    for _, v := range keys {
        fmt.Println(v)
    }
    fmt.Println("")

    keys2 := make([]string, 0, len(memPool))
        for key2 := range memPool {
            keys2 = append(keys2, key2)
        }

    sort.Slice(keys2, func(i, j int) bool { return memPool[keys2[i]].Nonce > memPool[keys2[j]].Nonce })

    for _, v := range keys2 {
        fmt.Println(v)
    }

}

Current output:

tx7
tx3
tx4
tx1
tx2
tx5
tx6

tx4
tx5
tx3
tx6
tx2
tx7
tx1

Desired output:

tx1
tx2
tx6
tx5
tx7
tx3
tx4
  • 写回答

2条回答 默认 最新

  • doob0526 2019-07-19 15:38
    关注

    You're sorting two separate times when it appears you want to sort once. So, sort once, using all of the logic that you want to use to sort your values, once.

    sort.Slice(keys, func(i, j int) bool {
        if memPool[keys[i]].Timestamp == memPool[keys[j]].Timestamp {
            if memPool[keys[i]].Nonce == memPool[keys[j]].Nonce {
                return memPool[keys[i]].Value < memPool[keys[j]].Value
            }
            return memPool[keys[i]].Nonce < memPool[keys[j]].Nonce
        }
        return memPool[keys[i]].Timestamp < memPool[keys[j]].Timestamp
    })
    

    Working example: https://play.golang.org/p/GERCSchEtOf

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么