1

我的问题是关于如何通过其中一个属性对具有自定义对象的 ArrayList 进行排序,但从自定义条件开始。

让我更好地解释一下,这是我的代码:

public static void sortArrayListByProperty(ArrayList colorList){

        Collections.sort(colorList, new Comparator(){

            public int compare(Object emp1, Object emp2){

                int intValue1 = ((ColorCounter)emp1).getIntColorValue();        
                int intValue2 = ((ColorCounter)emp2).getIntColorValue();

                if(intValue1 < intValue2)
                    return 1;
                else if(intValue1 > intValue2)
                    return -1;
                else
                    return 0;    
            }
        });
    }

这会将我的 ArrayList 从大到小排序。

但我想要的是从我将指定的起始编号对我的 ArrayList 进行排序。

例如,如果 ArrayList 包含

5 3 9 1 14 

假设我希望数字从 3 开始,那么我需要

3 5 9 14 1

我希望足够清楚...

是否可以?

@Joachim Sauer

谢谢,我稍微编辑了您的代码并更改了返回值,它起作用了!

编辑代码:

if (cv1 >= threshold && cv2 < threshold) {
   return -1;
} else if (cv2 >= threshold && cv2 < threshold) {
   return -1;
} else if (cv1 < cv2) {
   return 1;
} else if (cv1 > cv2) {
   return 1;
} else {
   return 0;    
}

测试示例:

16777215
16448250
15790320
4013373

按 15790320 排序:

15790320
16448250
16777215
4013373
4

3 回答 3

3

你可以试试这个:

public class ColorCounterComparator implements Comparator<ColorCounter> {
  private final threshold;

  public ColorCounterComparator(final int threshold) {
    this.threshold = threshold;
  }

  @Override
  public int compare (ColorCounter c1, ColorCounter c2) {
    int cv1 = c1.getIntColorValue();
    int cv2 = c1.getIntColorValue();

    if (cv1 >= threshold && cv2 < threshold) {
       return -1;
    } else if (cv2 >= threshold && cv2 < threshold) {
       return 1;
    } else if (cv1 < cv2) {
       return -1;
    } else if (cv1 > cv2) {
       return 1;
    } else {
       return 0;    
    }
  }
}

这显然是未经测试的,可能有一些错误,并且可能已经翻转了 -1/1 值。但它应该向您展示基本思想;-)

于 2012-04-30T13:14:17.090 回答
1

使用ArrayList sublist 方法创建一个子列表,然后对这个子列表进行排序。

于 2012-04-30T13:15:10.093 回答
0

未经测试,但你明白了:你有两种情况

  • 两个数字都低于起始数字(在您的示例中为 3)或两者都高于 ==> 比较它们
  • 一个数字低于起始编号,另一个高于 ==> 第一个在您的自定义排序顺序中的第二个之后:

if (intValue1 < start && intValue2 < start || intValue1 >= start && intValue2 >= start) {
    if(intValue1 < intValue2)
        return 1;
    else if(intValue1 > intValue2)
        return -1;
    else
        return 0;    
} else {
    if (intValue1 < start)
        return -1;
    else
        return 1;
}
于 2012-04-30T13:13:36.167 回答