2

我正在尝试使用 Comparator 接口对 TreeMap(将 Double 作为值,将 Integer 值作为键)进行排序,但它不起作用。

// Create a tree map
        TreeMap tm = new TreeMap();
        // Put elements to the map
        tm.put(1, new Double(3434.34));
        tm.put(0, new Double(123.22));
        tm.put(4, new Double(1378.00));
        tm.put(2, new Double(99.22));
        tm.put(3, new Double(-19.08));
        List<Map.Entry> valueList = new ArrayList(tm.entrySet());

        // Collections.sort(valueList, new Sort());

        Collections.sort(valueList, new Sort());

        HashMap sortedMap = new HashMap();

        // Get an iterator
        Iterator<Map.Entry> i = valueList.iterator();

        // Display elements
        while (i.hasNext()) {
            Map.Entry object = i.next();
            sortedMap.put(object.getKey(), object.getValue());
        }
        List sortedList = new ArrayList(sortedMap.entrySet());
        Iterator<Map.Entry> iterator = sortedList.iterator();
        while (iterator.hasNext()) {
            Map.Entry entry = iterator.next();
            System.out.println("Value " + entry.getValue() + "\n");
        }

以下是我的比较器类

public class Sort implements Comparator<Map.Entry> {

    @Override
    public int compare(Map.Entry o1, Map.Entry o2) {
        // TODO Auto-generated method stub
        double valueOne = (Double) o1.getValue();
        double valueTwo = (Double) o2.getValue();

        int returnValue =
            valueOne > valueTwo ? -1 : (valueOne == valueTwo ? 0 : 1);

        return (valueOne > valueTwo ? -1 : (valueOne == valueTwo ? 0 : 1));
    }

}

但我得到以下输出

Value 123.22

Value 3434.34

Value 99.22

Value -19.08

Value 1378.0

Edited Part

public int compare(Map.Entry o1, Map.Entry o2) {
        // TODO Auto-generated method stub
        double valueOne = ((Double) o1.getValue()).doubleValue();
        double valueTwo = ((Double) o2.getValue()).doubleValue();

        int returnValue =
            valueOne > valueTwo ? -1 : (valueOne == valueTwo ? 0 : 1);

        return (valueOne > valueTwo ? -1 : (valueOne == valueTwo ? 0 : 1));
    }
4

5 回答 5

5

HashMap本质上是无序的。

相反,您可以TreeMap首先使用您的比较器创建一个。

于 2012-04-25T13:43:38.643 回答
1

当您将它们放入时,HashMap它们将不会保留它们的顺序,因为 aHashMap不是有序映射。

于 2012-04-25T13:46:17.080 回答
1

添加其他人已经建议的内容,试试这个:

import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.TreeMap;

public class SortDemo
{
  public class Sort implements Comparator<Map.Entry>
  {
    public int compare(Entry o1, Entry o2)
    {
      Double valueOne = (Double) o1.getValue();
      Double valueTwo = (Double) o2.getValue();
      return (int) Math.signum(valueOne.compareTo(valueTwo));
    }
  }

  public static void main(String[] args)
  {
    new SortDemo().foo();
  }

  void foo()
  {
    TreeMap tm = new TreeMap();
    tm.put(1, new Double(3434.34));
    tm.put(0, new Double(123.22));
    tm.put(4, new Double(1378.00));
    tm.put(2, new Double(99.22));
    tm.put(3, new Double(-19.08));

    List<Map.Entry> valueList = new ArrayList(tm.entrySet());
    Collections.sort(valueList, new Sort());

    Iterator<Map.Entry> iterator = valueList.iterator();
    while (iterator.hasNext())
    {
      Map.Entry entry = iterator.next();
      System.out.println("Value: " + entry.getValue());
    }
  }
}
于 2012-04-25T13:57:03.377 回答
1

仅适用于您的Comparator密钥,而不是条目。您需要一个Comparator<Integer>, 并将此 Comparator 的实例传递给TreeMap构造函数。

TreeMap<Integer,Double> tm = new TreeMap<Integer,Double>(myIntegerComparator);

在您的示例中,您看到的行为是由于TreeMapusingInteger的标准比较(这有效,因为Integeris Comparable<Integer>)。

(顺便说一句,您还应该阅读泛型并在您的集合类以及任何其他参数化类中使用它们。)

于 2012-04-25T13:58:47.233 回答
0

使用 HashMap 进行排序将不起作用,因为它不是列表。您需要查看 ArrayList 和 sort 方法。

ArrayList<double> arr = new ArrayList<double>();
sort(arr) //sort ascending 
于 2012-04-25T13:50:07.513 回答