当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ArrayList转LinkedHashMap用法及代码示例


LinkedHashMap 是Java 中的一个预定义类,类似于HashMap,包含key 及其各自的值,不像HashMap,在LinkedHashMap 中保留了插入顺序。

我们需要将ArrayList转换为LinkedHashMap,LinkedHashMap的Key值就是ArrayList的索引,本质上LinkedHashMap在迭代和存储数据方面也和ArrayList一样。

例:

Input ArrayList: { 5, 6, 7, 8, 4 } 

Output LinkedHashMap:

Index  |  Value
  1    |    5
  2    |    6
  3    |    7
  4    |    8
  5    |    4

我们可以通过 2 种方式将 ArrayList 转换为 LinkedHashMap:

  1. 使用 for-each 循环遍历整个 ArrayList 并将每个元素推送到 LinkedHashMap。
  2. 在 java 8 版本中使用流。

方法:使用 for-each 循环



  • 在 ArrayList 中接受输入。
  • 使用 For/While 循环在 LinkedHashMap 中推送值(假设第一个索引为 1,LinkedHashMap 的键将是 ArrayList 的索引)

伪代码:

while (i < l1.size()) {

            l.put(i + 1, l1.get(i));
            i++; 
}

Here, "l1" is ArrayList and "l" is LinkedHashMap.

Java


// Java program to convert ArrayList
// to LinkedHashMap
  
import java.util.*;
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
        LinkedHashMap<Integer, Integer> l = new LinkedHashMap<>();
  
        ArrayList<Integer> l1 = new ArrayList<>();
        l1.add(5);
        l1.add(6);
        l1.add(7);
        l1.add(8);
        l1.add(4);
  
        int i = 0;
       
        // Adding one by one the elements 
        // of ArrayList to LinkedHashMap
        while (i < l1.size()) 
        {
  
            l.put(i + 1, l1.get(i));
            i++;
        }
        
        System.out.println("Key  |  Value");
        
        // .entrySet() method gives us the list of all 
        // mappings reference of the map
        for (Map.Entry<Integer, Integer> it:l.entrySet()) {
            
            System.out.println(" " + it.getKey() + "   |  "
                               + it.getValue());
            
        }
    }
}
输出
Key  |  Value
 1   |  5
 2   |  6
 3   |  7
 4   |  8
 5   |  4

时间复杂度:在)

方法2:使用

如果您使用的是 Java 8 或更高版本,还有另一种方法,您可以使用流将 List 转换为 LinkedHashMap 对象。Stream API 用于处理对象的集合。流是支持各种方法的对象序列可以流水线化以产生所需的结果。

例:

Java


// Java program to convert ArrayList to LinkedHashMap
  
import java.util.*;
import java.io.*;
import java.util.stream.Collectors;
class integer {
  
    private Integer id;
    private String name;
  
    public integer(Integer id, String name)
    {
        this.id = id;
        this.name = name;
    }
  
    public Integer getId() { return this.id; }
    
    // the .toString method of Object class
    // will be called by default when the object
    // of integer class will be made
    public String toString()
    {
        return "[" + this.id + "=>" + this.name + "]";
    }
}
  
class GFG {
    public static void main(String[] args)
    {
  
        List<integer> List = new ArrayList<integer>();
  
        List.add(new integer(1, "will"));
        List.add(new integer(2, "mike"));       
        List.add(new integer(3, "luke"));
        List.add(new integer(4, "dustin"));
  
        System.out.println("ArrayList contains:" + List);
  
        // stream Api is used here to convert the 
        // List to LinkedHashMap
        Map<Integer, integer> HashMap = List.stream().collect(Collectors.toMap(
                       integer::getId, integer -> integer));
  
        System.out.println("Map contains:" + HashMap); 
    }
}
输出
ArrayList contains:[[1=>will], [2=>mike], [3=>luke], [4=>dustin]]
Map contains:{1=[1=>will], 2=[2=>mike], 3=[3=>luke], 4=[4=>dustin]}




相关用法


注:本文由纯净天空筛选整理自kushwahp1234大神的英文原创作品 Convert ArrayList to LinkedHashMap in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。