我的代码将值存储在哈希表中,我想知道如何从哈希表中打印data
?我不太确定如何迭代哈希表来打印它的值。我对Java很陌生,所以我真的不知道我可以使用哪些内置函数。
我的代码:
public static void deleteDups(LinkedListNode n) {
Hashtable table = new Hashtable();
LinkedListNode previous = null;
while (n != null) {
if (table.containsKey(n.data)) {
previous.next = n.next;
}
else {
table.put(n.data, true);
previous = n;
}
n = n.next;
}
}
答案 0 :(得分:2)
for(Object o : table.keySet()) {
LinkedListNode lln = (LinkedListNode)o;
System.out.println(lln.data);
}
另请注意,您最好将表格声明为Hashtable<LinkedListNode, Boolean>
,这样您就可以按键重复
for(LinkedListNode lln : table.keySet()) {
System.out.println(lln.data);
}