【问题标题】:I do not understand why I am seeing an index from my array list twice despite having removed it after the first occurrence我不明白为什么我在数组列表中看到了两次索引,尽管在第一次出现后删除了它
【发布时间】:2021-02-08 16:08:17
【问题描述】:

我正在尝试使用数组列表解决约瑟夫斯问题。我注意到即使我在它被杀死后删除并索引它仍然显示在我的输出中。

为什么应该删除的2又出现了?

以下是我当前的输出:

There are 7 people in the circle.
1, 2, 3, 4, 5, 6, 7
2 
2, 4 
2, 4, 1 
2, 4, 1, 3 
2, 4, 1, 3, 2 
2, 4, 1, 3, 2, 0

You should sit in seat 4 if you want to survive!
public class project1 {
  public static int Josephus (int n, int k){
    ArrayList<Integer> circle = new ArrayList<Integer>();
    for (int p = 1; p <= n; p++) {
      circle.add(p);                                                              
    }
    System.out.println("There are " + n + " people in the circle.");
    System.out.println(circle);

    ArrayList<Integer> kill_order = new ArrayList<Integer>();
    for (int index=1; circle.size()!=1; index++){
      if (circle.size() > 1){
        index = (index + k - 1) % circle.size();
        kill_order.add(index);
        circle.remove(index);
        System.out.println(kill_order);
      } else if (circle.size()==1){
        System.out.println("Execution Order: " + kill_order + " ");
        index = 1;
      }
    }
    return circle.get(0);
  }

  public static void main(String[] args) {
    System.out.println("You should sit in seat " + Josephus(7, 2) + " if you want to survive!");
  }
}

【问题讨论】:

    标签: java arraylist josephus


    【解决方案1】:

    List.remove 有两种方法:remove(int index) 将删除列表中给定索引处的项目,remove(Object o) 将删除第一个等于 o 的对象。

    我认为在您的代码中,circle.remove(index); 解析为第一个,但您实际上需要第二个。见https://docs.oracle.com/javase/8/docs/api/java/util/List.html

    这应该可以解决这个问题:

    circle.remove((Integer)index);
    

    【讨论】:

    • 我试过这个,但这让我的代码变成了一个无限循环。
    【解决方案2】:

    您第二次看到 2 是因为您将人的索引添加到“杀死”而不是值到 kill_order 列表中。

    这应该可行:

    
    if (circle.size() > 1){
        index = (index + k - 1) % circle.size();
        kill_order.add(circle.get(index));
        circle.remove(index);
        System.out.println(kill_order);
    }
    

    【讨论】:

      猜你喜欢
      • 2022-12-08
      • 2023-04-02
      • 1970-01-01
      • 2023-04-06
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多