91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java實現數據集合的多種方法

發布時間:2020-08-08 05:06:52 來源:ITPUB博客 閱讀:199 作者:gxbgxb 欄目:編程語言

//
//=================顯示連接型列表的使用=========

import java.util.*;

public class list_all
{
public static void main(String[] args)
{
//----------------(1) 列表--------------------------
//list_view() //0--list

// linkedlist(); //1 --linkedList
// hashset(); //2 --hashset
treeset(); //3 --treeset函數
// collections(); //4 --使用運算函數
// linkedlist_test(); //5 --<接型列表_復雜運用>

//-----------------(2) 集合-------------------------
//stack Enumerration vector hashtable
// tHashtable();

}
public static void list_view(){
List list=new ArrayList();
list.add("aaa");
list.add("bbb");
list.add("ccc");
Iterator iter=list.iterator();
while(iter.hasNext()){
System.out.println(iter.next());}
}
//--------------------顯示連接型列表
public static void linkedlist()
{
LinkedList l=new LinkedList();
l.add("aaaa ");
l.add("bbbb ");
l.add("cccc ");
l.add("dddd ");
l.addFirst("star ");
l.addLast("end ");
System.out.println("顯示全部:n");
System.out.println(l+"n");
System.out.println("第一個是: n");
System.out.println(l.get(1)+"n");
}
//--------------------散列型列表(沒有順序的)
public static void hashset()
{

HashSet l=new HashSet();
l.add("aaaa ");
l.add("bbbb ");
l.add("cccc ");
l.add("dddd ");
System.out.println("顯示全部:n");
System.out.println(l+"n");
}
//--------------------樹型列表(一自動會 順序的)
public static void treeset()
{
TreeSet l=new TreeSet();
l.add("9 ");
l.add("5 ");
l.add("3 ");
l.add("4 ");
l.add("8 ");
l.add("7 ");
System.out.println("顯示全部:n");
System.out.println(l+"n");
l.remove("3");
System.out.println("刪除掉 元素' 3' 個后 n");
System.out.println(l+"n");
System.out.println("到元素' 5' 為止的所有數據 n");
System.out.println(l.headSet("4"));

}
//--------------------使用運算函數 Collection 做 min max fill
public static void collections()
{
List l=new ArrayList();
l.add("1 ");
l.add("5 ");
l.add("3 ");
l.add("4 ");
l.add("8 ");
l.add("7 ");
System.out.println("顯示全部:n");
System.out.println(l+"n");

System.out.println("最大的元素是 n");
String gg = Collections.max(l).toString();
System.out.println(gg+"n");

System.out.println("最小的元素是 n");
gg = Collections.min(l).toString();
System.out.println(gg+"n");

System.out.println("排序后的元素是 n");
Collections.sort(l);
System.out.println(l+"n");
}
//--------------------顯示連接型列表//復雜與用===========
public static void linkedlist_test()
{
LinkedList l=new LinkedList();
l.add("goood"); //輸入整數10
l.add("hao");
l.add("nihoa");
l.add("good");
// l.addFirst("19 ");
// l.addLast("16 ");
Comparator cmp=Collections.reverseOrder();//強行整體排序函數Comparator
Collections.sort(l,cmp);
Iterator it=l.iterator();//返回一個在一組 T 類型的元素上進行迭代的迭代器。
System.out.println("逆順序的結果:");
while (it.hasNext())
{
System.out.println(it.next());
}
System.out.println("最大的元素是 "+Collections.max(l));
System.out.println("最小的元素是 "+Collections.min(l));
}

//--------------------哈希表的使用---容量和負載系數--------------------
public static void tHashtable()
{
Hashtable h =new Hashtable();
h.put("a",new Integer(10));
h.put("b",new Integer(110));
h.put("c",new Integer(20));
h.put("d",new Integer(40));
h.put("e",new Integer(5555));
h.put("f",new Integer(60));
System.out.println(h.elements()); //返回哈希表中的值的枚舉

System.out.println(h.keySet()); //返回鍵值表
System.out.println(h.values()); //返回此 Hashtable 中所包含值的 Collection 視圖


Enumeration e = h.elements();
while (e.hasMoreElements())
{
System.out.println(e.nextElement());
}


}

}

[@more@]
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳信县| 绿春县| 伊宁市| 伊金霍洛旗| 南华县| 东城区| 清徐县| 绥棱县| 唐山市| 房山区| 镇坪县| 会理县| 鹤壁市| 普陀区| 惠州市| 同仁县| 东丽区| 盐城市| 宾阳县| 绵阳市| 洱源县| 孝感市| 文登市| 天长市| 玉环县| 达拉特旗| 宁波市| 绥棱县| 淮北市| 阿巴嘎旗| 安泽县| 松江区| 石林| 新兴县| 遂昌县| 张家港市| 南通市| 城固县| 温州市| 越西县| 黑龙江省|