在HashMap Java上迭代两次

时间:2015-02-20 21:28:21

标签: java iterator hashmap listiterator

我将HashMap声明为

static HashMap<String,ArrayList<Integer>> inverted_index = new HashMap<String,ArrayList<Integer>>();

我将其键重复为

    public static void printInvertedIndex() throws FileNotFoundException{
    PrintWriter writer = new PrintWriter(new File("InvertedIndex.txt"));
    Iterator it = inverted_index.entrySet().iterator();

    while (it.hasNext()) {
        Map.Entry pair = (Map.Entry)it.next();
        writer.println(pair.getKey() + "  " + pair.getValue());
        it.remove();
        }

    writer.close();
}

我在一个名为printInvertedIndex()的函数中完成了所有这些操作。 现在在其他一些函数中我想再次迭代HashMap,所以我做了这个

    public static void createPermutermIndex(){
    permuterm_index.clear();

    Iterator it = inverted_index.entrySet().iterator();

    while (it.hasNext()) {
        System.out.println("here");
        Map.Entry pair = (Map.Entry)it.next();
        String temp;
        temp = pair.getKey() + "$";
        ArrayList<String> perms = rotations(temp);
        System.out.println(perms.size());
        for(int i=0; i<perms.size(); i++)
            System.out.println(perms.get(i));
            //permuterm_index.put(temp, perms.get(i));
        it.remove();
        }
    }

但我没有得到&#34;在这里&#34;调用createPermutermIndex()时打印。也就是说,我的迭代器不会迭代invert_index的条目。

有什么方法可以再次迭代它吗?

1 个答案:

答案 0 :(得分:7)

while (it.hasNext()) {
    Map.Entry pair = (Map.Entry)it.next();
    writer.println(pair.getKey() + "  " + pair.getValue());
    it.remove(); // <- This is your problem
}

您在迭代这些条目时删除条目。循环退出时,您将删除地图中的所有条目。因此,第二个循环不做任何事情就不足为奇了 - 没有什么可以迭代的。

在这些循环期间,您似乎不想删除任何内容,因此只需删除两个循环中的it.remove()行。