我想添加到hashmap中的链表中。ex约翰:-->杰克-->黑人-->快克苏珊:-->莎莉,萨米,傻ect
我不太确定该怎么做。我需要为每个名称创建一个新的linkedList吗?如果需要,我如何动态创建一个。这是我尝试的一些示例代码。
import java.util.*;
import java.io.*;
public class test {
public static void main(String args[]) throws FileNotFoundException{
HashMap<String, LinkedList<String>> testMap = new HashMap<String, LinkedList<String>>();
File testFile = new File("testFile.txt");
Scanner enterFile = new Scanner(testFile);
String nextline = "";
LinkedList<String> numberList = new LinkedList<String>();
int x = 0;
while(enterFile.hasNextLine()){
nextline = enterFile.nextLine();
testMap.put(nextline.substring(0,1),numberList);
for(int i = 1; i < nextline.length() - 1; i++){
System.out.println(nextline);
testMap.put(nextline.substring(0,1),testMap.add(nextline.substring(i,i+1)));
}
x++;
}
LinkedList<String> printHashList = new LinkedList<String>();
printHashList = testMap.get(1);
if(printHashList.peek() != "p"){
System.out.println(printHashList.peek());
}
}
}
Srry如果这不是一个好的帖子,这是我的第一个
public void putToMap(String name) {
String firstLetter = name.substring(0, 1);
List<String> names = testMap.get(firstLetter);
if (names == null) {
names = new LinkedList<String> ();
testMap.put(firstLetter, names);
}
names.add(name);
}
Alex的答案是你的问题的常见(也是最轻量级的)解决方案,也是你应该选择的答案(如果他按照我的评论修改了它),但只是想让你知道另一个解决方案是使用LinkedListMultiMap(这是Guava库中的一个类)。
LinkedListMultiMap是处理列表映射的一种简单方法(但会带来Guava库的额外库开销)。您可以为每个键单独添加多个值,我相信这是您想要的行为。
- 番石榴
- LinkedListMultiMap(JavaDoc)