为了账号安全,请及时绑定邮箱和手机立即绑定

计算给定数组中的重复项数

计算给定数组中的重复项数

梵蒂冈之花 2022-05-25 09:44:15
输入:1,4,2,6,7,5,1,2 输出:2计算java给定数组中重复数字的数量。我首先对数组进行排序,然后计算重复项。它向我显示了未使用变量 c 并且此方法应返回 int 值的错误。public class Duplicatespublic static void main(String[] args) {    int[]list;    int[]c;        int[] c = new int[list.length];        int temp;        for (int i = 0; i < list.length - 1; i++) {            for (int j = i + 1; j < list; j++) {                if (list[I] > list[j]) {                    temp = list[i];                    list[i] = list[j];                    list[j] = temp;                    c = list;                }            }        }        int n = 0;        int counter = 0;        int a = -1;        for (int i = 0; i < c.length; ++i) {            if (c[i] == a) {                ++n;                if (n == 1) {                    ++counter;                    if (counter == 1) {                        System.out.print(c[i]);                    } else {                        System.out.print("," + c[i]);                    }                }            } else {                a = c[i];                n = 0;            }        }        System.out.println("\nNumber of Duplicated Numbers in array:" + counter);    }}
查看完整描述

1 回答

?
MYYA

TA贡献1868条经验 获得超4个赞

它向我显示未使用变量 c 的错误


这应该是一个警告。因此,即使显示此代码,代码仍应正确运行。


此方法应返回 int 的值


这是一个编译错误,因为您没有int在方法末尾返回任何数组,所以您的方法的返回类型应该是void. 你应该改变你的方法签名如下,


public static void c(int[] list)

int否则,您将需要在方法结束时返回一个数组。


修复代码后,


public class Duplicates {

    public static void main(String[] args) {

        int[] list = new int[]{1, 4, 2, 6, 7, 5, 1, 2};

        int temp;


        for (int i = 0; i < list.length; ++i) {

            for (int j = 1; j < (list.length - i); ++j) {

                if (list[j - 1] > list[j]) {

                    temp = list[j - 1];

                    list[j - 1] = list[j];

                    list[j] = temp;

                }

            }

        }


        int n = 0, counter = 0;

        int previous = -1;

        for (int i = 0; i < list.length; ++i) {

            if (list[i] == previous) {

                ++n;

                if (n == 1) {

                    ++counter;

                    if (counter == 1) {

                        System.out.print(list[i]);

                    } else {

                        System.out.print(", " + list[i]);

                    }

                }

            } else {

                previous = list[i];

                n = 0;

            }

        }


        System.out.println("\nNumber of Duplicated Numbers in array: " + counter);

    }

}


查看完整回答
反对 回复 2022-05-25
  • 1 回答
  • 0 关注
  • 78 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信