我必须找到并列出数组中所有重复的索引值。
示例:int[] 数组 = { 0, 7, 9, 1, 5, 8, 7, 4, 7, 3};
7 位于索引 1、6 和 8 的三个不同位置。我将如何修改现有代码以使 outputResults.setText() 显示重复值的位置?outputResults.setText() 是 JTextField 如果有帮助的话。
String tmp1 = getNumbers.getText();
try {
int search = Integer.parseInt(tmp1);
for (p = 0; p < array.length; p++) {
if(array[p]==search) {
b = true;
index = p;
}
}
if(b==true)
outputResults.setText(search + " was in the following fields of the array " + index);
else
throw new NumberNotFoundException("Your number was not found.");
} catch (NumberFormatException ex) {
JOptionPane.showMessageDialog(getContentPane(), "You can only search for integers.");
} catch (NumberNotFoundException ex) {
JOptionPane.showMessageDialog(getContentPane(), ex.getMessage());
}
在当前状态下,它将仅列出上次找到重复号码的时间,根据我的示例,该号码将是索引 8。数组中的数字列表由用户输入,我不允许对值进行排序。我最初的猜测是创建一个嵌套循环,每当它找到一个重复的数字时,将 p (它正在搜索的当前索引)添加到一个新数组中。然后我会在 outputResults.setText() 中列出完整的数组,但是当我尝试时它给出了几个警告和错误。
如果需要,可以在这里找到完整的代码:http ://pastebin.com/R7rfWAv0 是的,完整的程序是一团糟,但它完成了工作,我对此感到非常头疼。另请注意,在完整程序中,如果检测到重复值作为额外学分,教授要求我们抛出异常。我做到了,但我将其注释掉以完成原始作业,因此请忽略它。