Подсчет и отображение вхождений в двумерном массиве - PullRequest
1 голос
/ 10 ноября 2010

Мой код выводит массив в порядке. Как отобразить, сколько раз данное целое число повторяется, и отобразить местоположения нижнего индекса, где оно повторяется?

#include <iostream>
#include <cmath>
#include <iomanip>
#include <ctime>

using namespace std;
int main()
{
    int table [10][10]={{0},{0}};
    int repeat=0;
    int count=0;
    int r=0;
    int c=0;
    //seeding the random function
    srand(static_cast<int>(time(0)));

    for(r=0; r<10; r++)//row
    {
        for(c=0; c<10; c++)
        {
            table[r][c] = 50+rand() %(100-50+1);
            cout << table[r][c]<<"  ";

        }
        cout<<endl;
    }
    cout<<"Enter the number to know how many times it is repeated(50 to 100): ";
    cin>>repeat;
    for (int x=0; x<10; x++)
    {
        if(repeat==table[r][c])
            count+=1;

    }

    cout<<"the number "<<repeat<<" appeared"<<count<<" times."<<endl;
    //display new line

    system("pause");
}

Ответы [ 3 ]

0 голосов
/ 10 ноября 2010

Вам следует заменить свой код:

for (int x=0; x<10; x++)
{
    if(repeat==table[r][c])
        count+=1;
}

на этот:

for (r = 0; r < 10; r ++)
{
    for (c = 0; c < 10; c ++)
    {
        if(table[r][c] == repeat)    // checking
             count ++;
    }
}
0 голосов
/ 10 ноября 2010

Есть два способа сделать это:

Вы можете отобразить нижние позиции в цикле for:

puts ("Locations:");
for (r = 0; r < 10; r ++)
{
    for (c = 0; c < 10; c ++)
    {
        if(table [r][c] == repeat)            // checking
        {
            printf ("[%i, %i]\n", r, c);      // display where it is
            count ++;
        }
    }
}

Или вы можете создать специальный массив встречающихся индексов:

int rs [100];    // rows and columns indexes of repeated subscripts
int cs [100];    //

for (r = 0; r < 10; r ++)
{
    for (c = 0; c < 10; c ++)
    {
        if(table [r][c] == repeat)            // checking
        {
            // no printf code here
            rs [count] = r;
            cs [count] = c;
            count ++;
        }
    }
}

// subscripts can be displayed or used in math algorithm now:

puts ("Locations:");
for (int i = 0; i < count; i ++)
    printf ("[%i, %i]", rs [i], cs [i]);

Последний метод не оптимален, но подходит для изучения C;) Хорошего кодирования!

0 голосов
/ 10 ноября 2010

Я не вижу, как ваш счетный код повторяется по матрице.'x' нигде не упоминается в цикле 'for'.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...