List&Map&Set的操作和遍历

List&Map&Set的操作和遍历

Java的三大集合即:Set、List、Map。

  • Set:代表无序、不可重复的集合,常用的有HashSet(哈希表实现)、TreeSet(红黑树实现);
  • List:代表有序、可以重复的集合,比较常用的有ArrayList(数组实现)、LinkedList(链表实现);
  • Map:代表具有映射关系的集合,常用的有HashMap(哈希表实现)、TreeMap(红黑树实现);

Java5以后又增加了Queue体系集合,代表一种队列集合实现,这里先不介绍。

List的实现类原理比较简单,Map比较复杂,而Set其实是基于Map的一种实现。

下面从各个集合的基本操作介绍一下,分别选取HashSet、ArrayList、HashMap三个典型的实现类:

1. HashSet

/**
 * HashSet的增删遍历
 * @author wangjun
 * @email  [email protected]
 * @time   2018年4月6日 下午2:40:33
 */
public class HashSetOperation {

    public static void main(String[] args) {
        //初始化
        HashSet<String> set = new HashSet<>();
        //增
        set.add("key1");
        set.add("key2");
        set.add("key3");
        //删
        set.remove("key1");
        //遍历1
        //使用set.descendingIterator()方法可以反向遍历
        System.out.println("HashSet遍历1,使用Iterator:");
        Iterator<String> it = set.iterator();
        while(it.hasNext()) {
            System.out.println(it.next());
        }
        //遍历2
        System.out.println("HashSet遍历2,使用for:");
        for(String str: set) {
            System.out.println(str);
        }
    }

运行结果:

HashSet遍历1,使用Iterator:
key2
key3
HashSet遍历2,使用for:
key2
key3

2.ArrayList

/**
 * ArrayList的增删查改,遍历
 * @author wangjun
 * @email  [email protected]
 * @time   2018年4月6日 下午2:25:43
 */
public class ArrayListOperation {

    public static void main(String[] args) {
        //初始化
        List<String> list = new ArrayList<>();
        //增
        list.add("str1");
        list.add("str2");
        list.add("str3");
        //删
        list.remove(1);
        //查
        System.out.println("list的第二个元素是:" + list.get(1));
        //改
        list.set(0, "str11");
        System.out.println("最终的list:" + list.toString());
        //遍历1,使用for
        System.out.println("LinkedList遍历1,使用for:");
        for (int i = 0; i < list.size(); i++) {
            System.out.println(list.get(i));
        }
        //遍历2,使用增强for
        System.out.println("LinkedList遍历1,使用增强for:");
        for(String str: list) {
            System.out.println(str);
        }
        //遍历3,使用Iterator,集合类的通用遍历方式
        System.out.println("LinkedList遍历3,使用Iterator:");
        Iterator<String> it = list.iterator();
        while(it.hasNext()) {
            System.out.println(it.next());
        }
    }

}

运行结果:

list的第二个元素是:str3
最终的list:[str11, str3]
LinkedList遍历1,使用for:
str11
str3
LinkedList遍历1,使用增强for:
str11
str3
LinkedList遍历3,使用Iterator:
str11
str3

3.HashMap

/**
 * hashMap的增删查改
 * 无序
 * key相当于set,不可重复
 * value相当于list,可重复
 * @author wangjun
 * @email  [email protected]
 * @time   2018年4月6日 下午2:30:31
 */
public class HashMapOperation {

    public static void main(String[] args) {
        //初始化
        HashMap<String,String> map = new HashMap<>();
        //增
        map.put("key1", "value1");
        map.put("key2", "value2");
        map.put("key3", "value3");
        //删
        map.remove("key2");
        //查
        System.out.println("key1对应的valve为:" + map.get("key1"));
        //改
        map.replace("key3", "value33");
        System.out.println("最终的map是:" + map.toString());
        //遍历1,取出map中所有的key组成一个set
        System.out.println("HashMap遍历1,取出map中所有的key组成一个set:");
        for(String key: map.keySet()) {
            System.out.println("key:" + key + ",value:" + map.get(key));
        }
        //遍历2,取出key组成set后,通过Iterator遍历key
        System.out.println("HashMap遍历2,取出key组成set后,通过Iterator遍历key:");
        Iterator<String> it = map.keySet().iterator();
        while(it.hasNext()) {
            String key = it.next();
            String value = map.get(key);
            System.out.println("key:" + key + ",value:" + value);
        }
        //遍历3,取出map中实际存储的数据结构--Map.Entry,在HashMap中使用的是Node静态内部类
        //推荐这种,尤其是数据很大时
        System.out.println("HashMap遍历3,通过Map.Entry:");
        Set<Map.Entry<String, String>> entry = map.entrySet();
        for(Map.Entry<String, String> entryItem: entry) {
            String key = entryItem.getKey();
            String value = entryItem.getValue();
            System.out.println("key:" + key + ",value:" + value);
        }
        //遍历4,只能遍历value,不能遍历key,相当于取出map中左右的value组成一个list
        System.out.println("HashMap遍历4,只遍历value:");
        for(String value: map.values()) {
            System.out.println("value:" + value);
        }
    }

}

运行结果:

key1对应的valve为:value1
最终的map是:{key1=value1, key3=value33}
HashMap遍历1,取出map中所有的key组成一个set:
key:key1,value:value1
key:key3,value:value33
HashMap遍历2,取出key组成set后,通过Iterator遍历key:
key:key1,value:value1
key:key3,value:value33
HashMap遍历3,通过Map.Entry:
key:key1,value:value1
key:key3,value:value33
HashMap遍历4,只遍历value:
value:value1
value:value33

可以看到:

遍历Set一般常用2种方式;

遍历List一般常用3种方式;

遍历Map一般常用4种方式;

根据使用场景,选择合适的遍历方式。

原文地址:https://www.cnblogs.com/scuwangjun/p/8734023.html

时间: 2024-10-19 11:38:13

List&Map&Set的操作和遍历的相关文章

003-Tuple、Array、Map与文件操作入门实战

003-Tuple.Array.Map与文件操作入门实战 Tuple 各个元素可以类型不同 注意索引的方式 下标从1开始 灵活 Array 注意for循环的until用法 数组的索引方式 上面的for是下标索引(繁琐用的不多) 下面的for是增强for循环的元素遍历索引(推荐) Map 注意左边是Key,右边是Value _(下划线也可以作为占位符,形成结构,但无名称不可以访问) 文件操作 进行了Source包的引入 .fromFile() getLines 使用了Iterator 欢迎广大爱好

Dream------scala--Tuple、Array、Map与文件操作

1.Tuple(元组) 一般使用中,假设一个函数返回多个值,我们可以使用tuple接受这个(val (x,y) = myfunction) package com.wls.scala.hello /** * Created by wls on 2015年8月12日21:31:56. */ object TupleOps { def main(args : Array[String]): Unit ={ //可以放任意多个元素-------------scala一个强大能力,类型推到,可以根据值来

PHP文件操作:遍历文件目录

1 <?php 2 /*遍历目录,列出目录中的文件 3 * array scandir(string $directory [,int $sorting_order]) 4 * $directory为待遍历目录的路径名,$sorting_order为可选参数,设置文件的降序或者升序排列 5 * */ 6 $path='./'; //为当前目录 7 if(file_exists($path)){ 8 $files_asc=scandir($path); 9 $files_desc=scandir(

JavaScript之jQuery-3 jQuery操作DOM(查询、样式操作、遍历节点、创建插入删除、替换、复制)

一.jQuery操作DOM - 查询 html操作 - html(): 读取或修改节点的HTML内容,类似于JavaScript中的innerHTML属性 文本操作 - text(): 读取或修改节点的文本内容,类似于JavaScript中的textContent属性 值操作 - val(): 读取或修改节点的value属性值,类似于 JavaScript 中的value值 属性操作 - attr(): 读取或者修改节点的属性 - removeAttr(): 删除节点的属性 二.jQuery操作

数组常见的操作_遍历

数组的操作:常用到得操作是遍历也即是获取数组中的元素.为了简化代码一般会用到for循环,遍历一般会用for循环 1 public class Array_Obtain { 2 public static void main(String[] args) { 3 int[] arr=new int[3]; 4 5 //获取数组中的元素 6 for(int x=0;x<3;x++){ 7 System.out.println("arr["+x+"]="+arr[x

文件操作-目录遍历

1.  遍历目录,不仅仅只是echo出,而是返回一个多维数组. 递归遍历目录,返回数组. 1 <?php 2 header("Content-Type:text/html;charset=UTF-8"); 3 $dir_name = "testDir"; 4 function dir_list($dir_name){ 5 $handle = opendir($dir_name); 6 while($file = readdir($handle)){ 7 if(

HDU 4022 Bombing(stl,map,multiset,iterater遍历)

题目 参考了     1     2 #define _CRT_SECURE_NO_WARNINGS //用的是STL中的map 和 multiset 来做的,代码写起来比较简洁,也比较好容易理解. //multiset可以允许重复 //multiset<int>::iterator it; 用来遍历 #include<stdio.h> #include<string.h> #include<algorithm> #include<iostream&g

Map集合的几种遍历方式

Map<String ,String> map=new HashMap<String,String>(); map.put("1","value1"); map.put("2","value2"); map.put("3","value3"); //第一种遍历方式: for(String key:map.keySet()){ String key=key; Str

王家林亲传《DT大数据梦工厂》第三讲Tuple、Array、Map与文件操作入门实战

你想了解大数据,你想成为年薪百万吗?那你还等着什么,快点来吧!跟着王家林老师学习spark大数据 第三讲Tuple.Array.Map与文件操作入门实战 Tuple object TupleOps  { def  main (args: Arrag[string]): Unit = { val triple = (100,”Scala”,”Spark”) printIn(triple._1) printIn(triple._2) } } Array object ArrayOperations