1. 程式人生 > >TreeSet排序,存儲自己定義對象,自己定義比較器演示樣例

TreeSet排序,存儲自己定義對象,自己定義比較器演示樣例

strlen 覆蓋 () num imp rgs com 哈希 ash

Set:無序。不能夠反復元素。
|--HashSet:數據結構是哈希表。線程是非同步的。


保證元素唯一性的原理:推斷元素的hashCode值是否同樣。


假設同樣,還會繼續推斷元素的equals方法。是否為true。



|--TreeSet:能夠對Set集合中的元素進行排序。


底層數據結構是二叉樹。
保證元素唯一性的根據:compareTo方法return 0.

TreeSet排序的第一種方式:讓元素自身具備比較性。


元素須要實現Comparable接口,覆蓋compareTo方法。


也種方式也成為元素的自然順序。或者叫做默認順序。

TreeSet的另外一種排序方式。

當元素自身不具備比較性時。或者具備的比較性不是所須要的。


這時就須要讓集合自身具備比較性。

在集合初始化時。就有了比較方式。


演示樣例:需求:
往TreeSet集合中存儲自己定義對象學生,依照學生的年齡進行排序

package tan;
import java.util.Iterator;
import java.util.TreeSet;
public class TreeSetDemo {
	public static void main(String[] args) {
		TreeSet ts=new TreeSet();
				ts.add(new Student("tan1", 21));
				ts.add(new Student("tan3", 20));
				ts.add(new Student("tan2", 23));
				ts.add(new Student("tan5", 21));
				
				Iterator it=ts.iterator();
				while(it.hasNext()){
				System.out.println(it.next());
				}
	}
}
class Student implements Comparable{
	private String name;
	private Integer age;
	
	public Student(String name, int age) {
		this.name = name;
		this.age = age;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public int getAge() {
		return age;
	}

	public void setAge(int age) {
		this.age = age;
	}
	@Override
	public String toString() {
		
		return "name:"+this.name+" "+"age:"+this.age;
	}
	@Override
	public int compareTo(Object obj) {
		if(!(obj instanceof Student))throw new RuntimeException("非學生對象");
		Student s=(Student)obj;
		if(this.age>s.age) return 1;
		//排序時。當主要條件同樣時。一定推斷一下次要條件。
		if(this.age==s.age)
		{
			return this.name.compareTo(s.name);
		}
		return -1;
	}
	
}

自己定義比較器

package tan;
import java.util.Comparator;
import java.util.Iterator;
import java.util.TreeSet;
public class TreeSetDemo {
	public static void main(String[] args) {
		//在這裏面能夠傳入自己定義比較器
		TreeSet ts=new TreeSet(new StudentAgeComparator());
		
				ts.add(new Student("tan01", 21));
				ts.add(new Student("tan03", 20));
				ts.add(new Student("tan03", 22));
				ts.add(new Student("tan0012", 23));
				ts.add(new Student("tan007", 21));
				
				Iterator it=ts.iterator();
				while(it.hasNext()){
				System.out.println(it.next());
				}
	}
}
class Student implements Comparable{
	private String name;
	private Integer age;
	
	public Student(String name, int age) {
		this.name = name;
		this.age = age;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public int getAge() {
		return age;
	}

	public void setAge(int age) {
		this.age = age;
	}
	@Override
	public String toString() {
		
		return "name:"+this.name+" "+"age:"+this.age;
	}
	@Override
	public int compareTo(Object obj) {
		if(!(obj instanceof Student))throw new RuntimeException("非學生對象");
		Student s=(Student)obj;
		if(this.age>s.age) return 1;
		//排序時。當主要條件同樣時,一定推斷一下次要條件。
		if(this.age==s.age)
		{
			return this.name.compareTo(s.name);
		}
		return -1;
	}
	
}
//自己定義姓名比較器
class StudentNameComparator implements Comparator{

	@Override
	public int compare(Object o1, Object o2) {
		Student s1=(Student)o1;
		Student s2=(Student)o2;
		int num=s1.getName().compareTo(s2.getName());
		if(num==0){
			//由於Ingteger已經實現了comparable接口
			return new Integer(s1.getAge()).compareTo(new Integer(s2.getAge()));
			//也能夠這樣寫
			/*
			if(s1.getAge()>s2.getAge())
				return 1;
			if(s1.getAge()==s2.getAge())
				return 0;
			return -1;
			*/
		}
		return num;
	}
	
}
//自己定義年齡比較器
class StudentAgeComparator implements Comparator<Student>{

	@Override
	public int compare(Student o1, Student o2) {
		int i=o1.getAge()-o2.getAge();
		return i;
	}	
}

練習:依照字符串長度排序。




字符串本身具備比較性,可是它的比較方式不是所須要的,這時就僅僅能使用比較器。

package tan;
import java.util.*;
public class TreeSetTest {
	public static void main(String[] args) {
		TreeSet ts = new TreeSet(new StrLengthComparator());

		ts.add("abcd");
		ts.add("cc");
		ts.add("cba");
		ts.add("aaa");
		ts.add("z");
		ts.add("hahaha");

		Iterator it = ts.iterator();

		while (it.hasNext()) {
			System.out.println(it.next());
		}
	}
}

class StrLengthComparator implements Comparator {
	@Override
	public int compare(Object o1, Object o2) {
		String s1 = (String) o1;
		String s2 = (String) o2;
		int num = new Integer(s1.length()).compareTo(new Integer(s2.length()));
		//當第一條件滿足時,推斷第二個條件依照自然順序排序
		if(num==0){
			return s1.compareTo(s2);
		}
		return num;
	}
}


TreeSet排序,存儲自己定義對象,自己定義比較器演示樣例