替换为ArrayList

时间:2016-05-17 03:56:01

标签: java arraylist joptionpane hashset

如何删除重复的数字并要求用户添加新数字以替换重复的数字?我们假设用户使用我制作的代码要求5个数字:6, 7, 8, 7, 9,输出为Number 7 was duplicated in position 3

现在我需要帮助的是,要求用户添加一个新号码来替换7,这样就不会有重复了。

所以我希望整个输出为Your numbers without duplicates:,它会打印输入的数字而没有任何重复。

输入它们的顺序对我很重要,因为我想继续测试ArrayList并尽量不要混淆我自己。 这是我的代码:

import java.util.ArrayList;
import java.util.HashSet;
import java.util.Set;
import javax.swing.JOptionPane;

public class Test {
    public static void main(String[] args) {
        ArrayList<Integer> al = new ArrayList<Integer>();

        int opt = Integer.parseInt(JOptionPane.showInputDialog("How many numbers?");
        for (int i=0 ; i < opc ; i++) {
        al.add(Integer.parseInt(JOptionPane.showInputDialog("Which numbers?")));
        }

        Set<Integer> s = new HashSet<>();
        for (Integer d : al){
            if (s.add(d) == false)
                JOptionPane.showMessageDialog(null,"Number " + d + " was duplicated in position " + al.lastIndexOf(d));
                JOptionPane.showMessageDialog(null,"Replace new number"); //This is where I would like to replace the numbers if possible
            }
        JOptionPane.showMessageDialog("Your numbers without duplicates: "); //This is where it would print
        }
    }
}

顺便说一句,如果对你没有任何意义,我很抱歉。我很难解释我的意思。但我尝试用细节解释我需要的一切。

2 个答案:

答案 0 :(得分:1)

您应该使用s.add(d)检查重复项,而不是执行false并检查s.contains(d),然后尝试替换重复的数字。这不会将数字添加到列表中,当用户提供另一个非重复的数字时,您可以将其添加到列表中。

答案 1 :(得分:0)

我猜你需要ArrayList.set()方法。

   for (Integer d : al){
                while (s.add(d) == false){ //replace if with while to keep looking for duplicate
                    JOptionPane.showMessageDialog(null,"Number " + d + " was duplicated in position " + al.lastIndexOf(d));
                    JOptionPane.showMessageDialog(null,"Replace new number"); 


//      al.set(d,[set the new value here]);
       }
  }