编写程序以从数组中删除重复项

时间:2014-05-10 00:12:32

标签: c++

我正在研究从数组中删除重复项的程序我在这里使用三个函数:一个用于输入大小和数字,第二个函数用于删除重复项并返回没有重复项的数字和第三个函数只是报告显示大小和新数字,但我遇到问题我不知道我在报告或phillip erreur的哪一步:

  

在功能‘int main()’中:从‘int*’‘int’的转换无效,初始化‘void report(int, int)’的参数1

#include <iostream>
using namespace std;

const int size = 100;

void phillip(int[], int & );
/* Preconditions: Array of base type in declared and int varuable declared
   postconditions: the array is filled with values supllied by the user at
   the keybord. the user is assked how many values they want - this value is
   given to the second argument.
*/

int remdubs(int[], int noel);
/* Preconditions: An array of basetype int that  has noel values.
   postconditions: The number of unique elemts in the array is returned. The function removes all dubplicates inside the array.
*/

void report(int s, int d);

int main()
{
    int ruby[size];
    int numele, numuniq;

    phillip(ruby, numele);

    numuniq = remdubs(ruby, numele);

    report(ruby, numuniq);

    return 0;
}

void phillip(int[], int& )
{
    int s;
    cout << "\nHow many values you want? ";
    cin >> s;

    cout << "\nPlease input 10 integers, hitting return after each one \n";
    for (int i = 0; i < s; i++)
    {
        int num;
        cin >> num;
    }
}

int rembups(int sapphire[], int noel)
{
    for (int i = 0; i < noel; i++)
    {
        for (int j = i + 1; j < noel; j++)
        {

            if (sapphire[i] == sapphire[j])
            {
                for (int k = j; k < noel; k++)
                    sapphire[k] = sapphire[k + 1];

                noel--;

                j--;
            }
        }
    }
    return noel;
}

void report(int s, int d)
{
    cout << "\nYou entered " << s << "distinct numbers: " << d;
}

3 个答案:

答案 0 :(得分:2)

无法解释它比你的错误更好:

void report (int s, int d);

这个函数要求两个整数值,你要传递一个数组,它具有衰减的功能,就像一个整数指针

int ruby[size];
report (ruby, numuniq);

我不确定你的程序的行为,但你应该做类似的事情

report(ruby[0], numuniq);

即:访问数组的元素并将其提供给函数

答案 1 :(得分:0)

错误在函数报告中,它要求两个整数,而是传递一个数组和一个整数 而且我不认为你在功能报告中需要2个参数来解决你的目的

void report(int d) { cout << "\nYou entered <<d<<" distinct numbers"; }

可以解决您的错误,但我认为您无法获得所需的输出

答案 2 :(得分:0)

代码几乎没有问题:

  • Report函数应该期望一个整数数组而不是单个整数
  • 尝试使用人类可读的变量或函数名称
  • remdubs在功能定义
  • 中重命名为rempubs
  • phillip函数定义没有正确定义params
  • 您有const int size但不使用
  • remdups在某个地方有个bug。我会在此处解决其他问题。
  • 查找重复项的方法比remdups更好。请查看其他一些解决方案。

我修复了您的代码并提供了here on ideone