当前位置:   article > 正文

对TreeSet中的元素1,2,3,4,5,6,7,8,9,10进行排列,排序逻辑为奇数在前偶数在后,奇数按照升序排列,偶数按照降序排列_tree奇数和偶数位置

tree奇数和偶数位置

使用TreeSet和Comparator,写TreeSetTest2

要求:对TreeSet中的元素1,2,3,4,5,6,7,8,9,10进行排列,排序逻辑为奇数在前偶数在后,奇数按照升序排列,偶数按照降序排列

package com.briup.bt3.day30;
import java.util.*;
public class TreeSetTest2 {

	public static void main(String[] args) {
		// TODO 自动生成的方法存根
		Set<Integer> set=new TreeSet<>(new Mycomparator());
		for(int i=1;i<=10;i++)
		{
			set.add(i);//输入1——10
		}
		for(Integer i:set)//增强for输出
		{
			System.out.print(i);
		}
	}

}
//重写Comparator
class Mycomparator implements Comparator{
	public int compare(Object o1,Object o2)
	{
		if(o1 instanceof Integer&&o2 instanceof Integer)
		{
			Integer a1=(Integer)o1;
			Integer a2=(Integer)o2;
			if(a1%2==0&&a2%2==0)//降序排列
			{
				return -1;
			}
			if(a1%2==1&&a2%2==1)//升序排列
			{
				return 1;
			}
			if(a1%2==0&&a2%2==1)//如果前面是偶数后面是奇数,则交换顺序
			{
				return 1;
			}
			if(a1%2==1&&a2%2==0)//如果前面是偶数后面是奇数,则不交换顺序
			{
				return -1;
			}
		}
		return 0;
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46

输出结果

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/766173
推荐阅读
相关标签
  

闽ICP备14008679号