赞
踩
要求:对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; } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。