我的数据结构如下:

class SKUPriceVO {
    String skuId;
    Map<String, PriceVo> priceMap;
}

class PriceVo {
    String type;
    String skuId;
    double price;
}


我需要排序的地图是:
Map<String, SKUPriceVo> myMap以其根据PriceVo对象中的价格排序的方式,即> myMap应该具有基于PriceVo中价格的升序或降序排列的SKUPriceVo。

最佳答案

您不能直接对哈希图进行排序。您需要做的就是将地图数据移动到列表中,然后根据价格对该列表进行排序。

List<Map.Entry<Integer, PriceVo >> list = new ArrayList<Map.Entry<Integer, PriceVo >>(map.entrySet());

Collections.sort(list, new Comparator<Map.Entry<Integer, PriceVo >>() {
        @Override
        public int compare(Map.Entry<Integer, PriceVo > price1,
                           Map.Entry<Integer, PriceVo > price2) {
            return price1.getValue().price.compareTo(price2.getValue().price);
        }
    }
);


您甚至可以使用树形图,并将比较器直接传递给它并进行排序,因此无需复制其他列表中的数据。

08-16 03:37