java中TreeSet有什么用,举例说明?
作者:互联网
2.2 TreeSet的用法
TreeSet 二叉查找书,所以结果为升序,任何顺序添加打印结果都为升序。
例:2.2.1
import java.io.*;
import java.util.*;
public class TestMark_to_win {
public static void main(String args[]) {
TreeSet t = new TreeSet();
t.add("2");
t.add("1");
t.add("4");
t.add("3");
/* because the tree is binary search tree , so the result is iterator
order, so ascending order
*/
System.out.println(t);
t.remove("3");
System.out.println(t);
t.add("5");
t.add("4");
t.add("7");
System.out.println(t);
}
}
更多内容请见原文,文章转载自:https://blog.csdn.net/qq_44639795/article/details/102669209
标签:java,TreeSet,System,add,println,举例说明,out 来源: https://www.cnblogs.com/xiaolongxia1922/p/14943190.html