gpt4 book ai didi

java - LinkedList、HashSet 和 HashMap 之间的主要区别是什么?

转载 作者:行者123 更新时间:2023-12-01 20:21:25 25 4
gpt4 key购买 nike

好吧,你不介意我会编写我的“测试”项目;首先,我创建了实现 AbstractMap 的类。

public class TestClass <K, V> extends AbstractMap <K, V> 

TestClass 有一个私有(private) LinkedList 作为参数(它是另一个实现 Map.Entry 的类:

private int size = 1000;
private LinkedList <InfoClass <K, V>> [] array = new LinkedList [size];

之后,我创建了检查和替换重复项的方法:

public V put (K key, V value){ // Void doesn't work, therefore we need to return any value;
V temp = null;
boolean found = false;
int index = Math.abs(key.hashCode()) % size;

if (array[index] == null)
array[index] = new LinkedList <InfoClass <K, V>> (); // If the specified member of array is null, create new member;

LinkedList <InfoClass <K, V>> list = array[index];
InfoClass <K, V> info = new InfoClass <K, V> (key, value);
ListIterator <InfoClass <K, V>> it = list.listIterator();

while (it.hasNext()){
InfoClass<K, V> temp2 = it.next(); // Create a temp instance;
if (temp2.getKey().equals(key)){ // If there is a duplicate of value, just replace by new one;
found = true;
temp = temp2.getValue();
it.set(info);
break;
}
}

if (!found) // if there is not a duplicate, add new one;
array[index].add(info);
return temp;
}

Next 方法返回一个值,否则如果数组成员不存在,则返回 null:

public V get (Object key){ // The parameter K doesn't work;
int index = Math.abs(key.hashCode()) % size;
if (array[index] == null)
return null;
else
for (InfoClass <K, V> info : array[index])
if (info.getKey().equals(key))
return info.getValue();
return null;
}

该方法形成了一组AbstractMap:

public Set<java.util.Map.Entry<K, V>> entrySet() {
Set <Map.Entry<K, V>> sets = new HashSet <Map.Entry<K, V>> ();

for (LinkedList <InfoClass<K, V>> temp1 : array){
if (temp1 == null)
continue;
else{
for (InfoClass<K,V> temp2 : temp1)
sets.add(temp2);
}
}

return sets;
}

好的,在主方法中创建新对象:

public static void main (String [] args){
TestClass <Integer, String> TC = new TestClass <Integer, String> ();
TC.putAll(CollectionDataMap.newCollection(new Group.Ints(), new Group.Name(), 10));
System.out.println(TC);
System.out.println(TC.get(1));
TC.put(1, "Hello this world");
System.out.println(TC);
}

希望我解释正确。我有一个问题,如果LinkedList和LinkedHashMap(HashMap)的工作方式相同,那么它们有什么区别?非常感谢!

最佳答案

如果多次添加相同的元素,LinkedList 可以多次包含相同的元素。

即使多次添加同一个对象,HashSet 也只能包含一次,但它不保留集合中的插入顺序。

LinkedHashSet 只能包含同一个对象一次,即使您多次添加它,但它也会保留插入顺序。

HashMap 将值映射到键,并且键存储在集合中(因此它只能在集合中出现一次)。 HashMap 不保留键集的插入顺序,而 LinkedHashMap 保留键的插入顺序。

关于java - LinkedList、HashSet 和 HashMap 之间的主要区别是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44614463/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com