gpt4 book ai didi

java - 对集合中的所有偶数进行升序排序,然后对所有奇数进行降序排序

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:44:57 25 4
gpt4 key购买 nike

这是一道面试题。

给出了一些随机数(假设是整数数组)。

  1. 我们如何才能先对所有偶数进行升序排序,然后对所有奇数进行降序排序。
  2. 哪个系列最适合。

输入数字:

12 67 1 34 9 78 6 31

保存在集合中的输出:

6 12 34 78 67 31 9 1 

最佳答案

任何支持使用自定义比较器排序的集合都可以 - 甚至是数组。按如下方式实现您的自定义比较器:

public int compare(int x, int y) {
if (x&1 == y&1) {
// Both numbers are odd or both numbers are even
if (x&1 == 0) {
// Both numbers are even: compare as usual
return Integer.compare(x, y);
} else {
// Both numbers are odd: compare in reverse
return Integer.compare(y, x);
}
}
// One is odd, the other one is even
if (x&1 == 0) {
return -1;
}
return 1;
}

关于java - 对集合中的所有偶数进行升序排序,然后对所有奇数进行降序排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9194497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com