pset3 множественность - голоса кандидатов не обновляются - CS50 - PullRequest
0 голосов
/ 06 апреля 2020

Я пытаюсь закончить sh pset3 для CS50, множественность и мой код не обновляет голоса для каждого кандидата. Я реализовал функцию голосования, но, похоже, она не работает. Вы знаете, где мне нужно улучшить мой код?

Это мой код на данный момент:

#include <cs50.h>
#include <stdio.h>
#include <string.h>

// Max number of candidates
#define MAX 9

// Candidates have name and vote count
typedef struct
{
    string name;
    int votes;
}
candidate;

// Array of candidates
candidate candidates[MAX];

// Number of candidates
int candidate_count;

// Function prototypes
bool vote(string name);
void print_winner(void);

int main(int argc, string argv[])
{
    // Check for invalid usage
    if (argc < 2)
    {
        printf("Usage: plurality [candidate ...]\n");
        return 1;
    }

    // Populate array of candidates
    candidate_count = argc - 1;
    if (candidate_count > MAX)
    {
        printf("Maximum number of candidates is %i\n", MAX);
        return 2;
    }
    for (int i = 0; i < candidate_count; i++)
    {
        candidates[i].name = argv[i + 1];
        candidates[i].votes = 0;
    }

    int voter_count = get_int("Number of voters: ");

    // Loop over all voters
    for (int i = 0; i < voter_count; i++)
    {
        string name = get_string("Vote: ");

        // Check for invalid vote
        if (!vote(name))
        {
            printf("Invalid vote.\n");
        }
    }

    // Display winner of election
    print_winner();
}

// Update vote totals given a new vote
bool vote(string name)
{
    // TODO
    for (int i = 0; i < candidate_count; i++)
    {
        if (strcmp(candidates[i].name, name) == 0)
        {
            candidates[i].votes++ ;
            return true;
        }
    }
    return false;
}

// Print the winner (or winners) of the election
void print_winner(void)
{
    // TODO
    int highest_vote = 0;
    string winner;
    for (int i = 0; i < candidate_count; i++)
    {
        if (candidates[i].votes >= candidates[0].votes)
        {
            highest_vote = candidates[i].votes;
            winner = candidates[i].name;
        }
    }
    printf("%s\n", winner);
    return;
}

INPUT:

./plurality a b c d
Number of voters: 5
Vote: a
Vote: a
Vote: b
Vote: b
Vote: c

OUTPUT:

b


Я использовал debug50, чтобы увидеть, в чем проблема, но я не смог получить к решению. Кто-нибудь тоже делал pset3 и есть полезные идеи?

Ответы [ 2 ]

0 голосов
/ 08 апреля 2020

Ваша функция голосования, кажется, в порядке. Print_winner, не так уж и много. Некоторая избыточность, некоторые странные вещи. Постарайтесь сделать это простым. Я вижу, вы уже решили это, но может помочь сравнить, где вы использовали вещи / строки, которые вам не нужны.

void print_winner(void)
{
    int winner = 0;
    // The var 'winner' is an int, a number of votes, not a name.

    // Finding the highest number of votes
    for (int i = 0; i < candidate_count; i++)
    {
    if (candidates[i].votes > winner)
        {
            winner = candidates[i].votes;
        }
    }

    // Printing the names of all candidates with 'winner' number of votes
    for (int j = 0; j < candidate_count; j++)
    {
        if (candidates[j].votes == winner)
        {
            printf("%s\n", candidates[j].name);
        }
    }
    return;
}
0 голосов
/ 06 апреля 2020

Ваша проблема здесь:

bool vote(string name)
{
    // TODO
    // LOOK OUT HERE FOR THE MISTAKE
    for (int i = 0; i < candidate_count; i++)
    {
        if (strcmp(candidates[i].name, name) == 0)
        {
            candidates[i].votes++ ;
            return true;
        }
        return false;  // <<<<<<<<<<<<<<<<<< ERROR!
    }
}

Если вы не нашли соответствия во время первой итерации, вы возвращаетесь из функции, и bob никогда не получает изменения для подсчета некоторых голосов. Вам нужно переместить второй return после l oop.

bool vote(string name)
{
    for (int i = 0; i < candidate_count; i++)
    {
        if (strcmp(candidates[i].name, name) == 0)
        {
            candidates[i].votes++;
            return true;
        }
    }
    return false;
}

И еще одна проблема:

   for (int i = 1; i <= candidate_count; i++)
    {
        if (candidates[i].votes > highest_vote)
        {
            candidates[i].votes = highest_vote;
        }
    }

Прежде всего: индекс должен начинаться с 0, как упоминалось в моем комментарии. Второе: вы должны обновить highest_vote, а не наоборот.

    for (int i = 0; i < candidate_count; i++)
    {
        if (candidates[i].votes > highest_vote)
        {
            highest_vote = candidates[i].votes;
        }
    }
...