java Comparator 实现不一样的排序

程序员面试宝典中,大家应该都看过各种排序方法:

   冒泡

   选择

   插入

   快速

   堆排序

   等等..

  这些针对的都是简单的数据类型,比如数值型int类型,当遇到实际情况中的复杂排序,比如对一个公司的员工,依据姓名,年龄,性别等不同的因素综合排序的情形,用上面的排序方法,将无法实现。但是不要害怕~java中有大神器:Comparator接口

  我们来看下源码,简单的让你不知道该怎么做..

public interface Comparator<T> {
    /**
     * Compares its two arguments for order.  Returns a negative integer,
     * zero, or a positive integer as the first argument is less than, equal
     * to, or greater than the second.<p>
     *
     * In the foregoing description, the notation
     * <tt>sgn(</tt><i>expression</i><tt>)</tt> designates the mathematical
     * <i>signum</i> function, which is defined to return one of <tt>-1</tt>,
     * <tt>0</tt>, or <tt>1</tt> according to whether the value of
     * <i>expression</i> is negative, zero or positive.<p>
     *
     * The implementor must ensure that <tt>sgn(compare(x, y)) ==
     * -sgn(compare(y, x))</tt> for all <tt>x</tt> and <tt>y</tt>.  (This
     * implies that <tt>compare(x, y)</tt> must throw an exception if and only
     * if <tt>compare(y, x)</tt> throws an exception.)<p>
     *
     * The implementor must also ensure that the relation is transitive:
     * <tt>((compare(x, y)>0) && (compare(y, z)>0))</tt> implies
     * <tt>compare(x, z)>0</tt>.<p>
     *
     * Finally, the implementor must ensure that <tt>compare(x, y)==0</tt>
     * implies that <tt>sgn(compare(x, z))==sgn(compare(y, z))</tt> for all
     * <tt>z</tt>.<p>
     *
     * It is generally the case, but <i>not</i> strictly required that
     * <tt>(compare(x, y)==0) == (x.equals(y))</tt>.  Generally speaking,
     * any comparator that violates this condition should clearly indicate
     * this fact.  The recommended language is "Note: this comparator
     * imposes orderings that are inconsistent with equals."
     *
     * @param o1 the first object to be compared.
     * @param o2 the second object to be compared.
     * @return a negative integer, zero, or a positive integer as the
     *         first argument is less than, equal to, or greater than the
     *         second.
     * @throws NullPointerException if an argument is null and this
     *         comparator does not permit null arguments
     * @throws ClassCastException if the arguments' types prevent them from
     *         being compared by this comparator.
     */
  <span style="font-size:18px;">  int compare(T o1, T o2);</span>

    /**
     * Indicates whether some other object is "equal to" this
     * comparator.  This method must obey the general contract of
     * {@link Object#equals(Object)}.  Additionally, this method can return
     * <tt>true</tt> <i>only</i> if the specified object is also a comparator
     * and it imposes the same ordering as this comparator.  Thus,
     * <code>comp1.equals(comp2)</code> implies that <tt>sgn(comp1.compare(o1,
     * o2))==sgn(comp2.compare(o1, o2))</tt> for every object reference
     * <tt>o1</tt> and <tt>o2</tt>.<p>
     *
     * Note that it is <i>always</i> safe <i>not</i> to override
     * <tt>Object.equals(Object)</tt>.  However, overriding this method may,
     * in some cases, improve performance by allowing programs to determine
     * that two distinct comparators impose the same order.
     *
     * @param   obj   the reference object with which to compare.
     * @return  <code>true</code> only if the specified object is also
     *          a comparator and it imposes the same ordering as this
     *          comparator.
     * @see Object#equals(Object)
     * @see Object#hashCode()
     */
<span style="font-size:18px;">    boolean equals(Object obj);</span>
}
 
就2个方法,那么实现复杂的排序,我们只要实现该接口中的compare接口就OK了。

  具体代码如下:

package someTest;

import java.util.Comparator;

class Person {  
	
String firstname,lastname;  
Boolean sex;  
Integer age;  

public Person(String firstname,String lastname,Boolean sex,Integer age) {  
    this.firstname = firstname;  
    this.lastname = lastname;  
    this.sex = sex;  
    this.age = age;  
}  
public String getFirstName() {  
     return firstname;  
   }  
  
   public String getLastName() {  
     return lastname;  
   }  
   public Boolean getSex() {  
      return sex;  
    }  
  
    public Integer getAge() {  
      return age;  
    }  
  
//为了输入方便,重写了toString()  
public String toString()  
    {  
      return firstname +" "+lastname+" "+(sex.booleanValue()?"男":"女")+" "+age;  
    }  
}  
//end person  
 
public class CompareObject implements Comparator<Object> {
@Override
public int compare(Object o1, Object o2){  
	        if (o1 instanceof String) {  
	          
	        	return compareImp( (String) o1, (String) o2);  
	          
	        }else if (o1 instanceof Integer) {  
	        	
	          return compareImp( (Integer) o1, (Integer) o2);  
	          
	        }else if (o1 instanceof Boolean) {  
	        	
	        return compareImp( (Boolean) o1, (Boolean) o2);  
	        
	        } else if (o1 instanceof Person) {  
	        	
	        return compareImp( (Person) o1, (Person) o2);  
	        
	        }else {  //根据需要扩展compare函数
	          System.err.println("未找到合适的比较器");  
	          return 1;  
	        }  
	      }  
	//重载  
  public int compareImp(String o1, String o2) {  
	        String s1 = (String) o1;  
	        String s2 = (String) o2;  
	        int len1 = s1.length();  
	        int len2 = s2.length();  
	        int n = Math.min(len1, len2);  
	        char v1[] = s1.toCharArray();  
	        char v2[] = s2.toCharArray();  
	        int pos = 0;  
	  
	        while (n-- != 0) {  
	          char c1 = v1[pos];  
	          char c2 = v2[pos];  
	          if (c1 != c2) {  
	            return c1 - c2;  
	          }  
	          pos++;  
	        }  
	        return len1 - len2;  
	      }  
	//重载  
 public int compareImp(Integer o1, Integer o2) {  
	        int val1 = o1.intValue();  
	        int val2 = o2.intValue();  
	        return (val1 < val2 ? -1 : (val1 == val2 ? 0 : 1));  
	  
	      }
 	//重载 
 public int compareImp(Boolean o1, Boolean o2) {  
	      return (o1.equals(o2)? 0 : (o1.booleanValue()==true?1:-1));  
	     }  
	  
 /*实体类的排序
  * 进行姓排序,谁的姓拼音靠前,谁就排前面。
  * 然后对名字进行排序。如果同名,女性排前头。
  * 如果名字和性别都相同,年龄小的排前头。
  * */
 //重载
public int compareImp(Person o1, Person o2) {  
	
	        String firstname1 = o1.getFirstName();  
	        String firstname2 = o2.getFirstName(); 
	        
	        String lastname1 = o1.getLastName();  
	        String lastname2 = o2.getLastName();  
	        
	        Boolean sex1 = o1.getSex();  
	        Boolean sex2 = o2.getSex();  
	        
	        Integer age1 = o1.getAge();  
	        Integer age2 = o2.getAge();  
	        
	        int compareFirstName = compare(firstname1, firstname2);
	        int compareLastName = compare(lastname1, lastname2);
	        int compareSex = compare(sex1, sex2);

	        if (compareFirstName != 0) {
	            return compareFirstName;
	        }

	        if (compareLastName != 0) {
	            return compareLastName;
	        }

	        if (compareSex != 0) {
	            return compareSex;
	        }

	        return compare(age1, age2);  
	  
	 } 
/*public boolean equals(Object obj){
	return true;
}*/
	public static void main(String[] args) {
		  Person[] person = new Person[] {  
			         new Person("zhangsan", "gg", Boolean.TRUE, new Integer(27)),  
			         new Person("lisi", "mm", Boolean.TRUE, new Integer(27)),  
			         new Person("wangwu", "mm", Boolean.FALSE, new Integer(27)),  
			         new Person("wangwu", "mm", Boolean.FALSE, new Integer(10)) 
			     };  
			     for (int i = 0; i < person.length; i++) {
			    	 if(i==0)
			    		 System.out.println("排序前:");
			       System.out.println("before sort=" + person[i]);  
			     }  
			     java.util.Arrays.sort(person, new CompareObject());  
			     for (int i = 0; i < person.length; i++) {  
			    	 if(i==0)
			    		 System.out.println("排序后:");
			        System.out.println("after sort=" + person[i]);  
			     } 
	}
}
运行结果:

排序前:
before sort=zhangsan gg 男 27
before sort=lisi mm 男 27
before sort=wangwu mm 女 27
before sort=wangwu mm 女 10
排序后:
after sort=lisi mm 男 27
after sort=wangwu mm 女 10
after sort=wangwu mm 女 27
after sort=zhangsan gg 男 27

 注:在实现Comparator接口时,并没有实现equals方法,可程序并没有报错,原因是实现该接口的类也是Object类的子类,而Object类已经实现了equals方法

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值