简体   繁体   English

CS50 pset3 复数程序没有 print_winner function (没有打印两个选举的获胜者)

[英]CS50 pset3 plurality program doesn't print_winner function (did not print both winners of election)

i just finish to program my plurality cs50 program.我刚刚完成了我的多个 cs50 程序的编程。 it runs smooth but when i run a check it says that it doesn't print the winner's name but it does.它运行顺利,但是当我运行检查时,它说它不打印获胜者的名字,但确实如此。 here it's the code, can anybody help me?这是代码,有人可以帮助我吗? as i said the function print_winner() works, if i run debug50 I can see that.正如我所说的 function print_winner()有效,如果我运行debug50我可以看到。 with a command-line argument i'm suppose to declare no more then 9 candidate, chosse how many vote i want, vote for the candidate and then the program is suppose to declare the winner(s).使用命令行参数,我假设宣布不超过 9 个候选人,选择我想要多少票,投票给候选人,然后程序假设宣布获胜者。 the problem is that it does it, but according with bot50 it doesn't.问题是它可以做到,但根据 bot50 它没有。

#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)
{       
    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)
{
    int n = candidate_count;
    typedef struct
    {
        string name;
        int votes;
    }
    bubble;
    bubble bubbles[n];
    for (int i = 0; i < n; i++)
    {
        for (int j = i + 1; j < n; j++)
        {    //doing a bubble sort to move the max vote at the end and doing 
               the same with the candidate name
                 
            if (candidates[i].votes > candidates[j].votes)
            {
                bubbles[0].votes = candidates[i].votes;
                candidates[i].votes = candidates[j].votes;
                candidates[j].votes = bubbles[0].votes;
                bubbles[0].name = candidates[i].name;
                candidates[i].name = candidates[j].name;
                candidates[j].name = bubbles[0].name;
            }
        }
    }
    for (int i = 1; i <= n; i++)
    {
        if (candidates[n - i].votes == candidates[n - 1].votes)
        {
            printf("%s ", candidates[n - i].name);
        }
        printf("\n");
    }
}

It would be nice to see more of your code, like where candidates and candidate_count are defined/initialized, and for instance, if you're doing #include <string> which indicates you're actually using std::string and not some other version of a string.很高兴看到您的更多代码,例如定义/初始化candidatescandidate_count的位置,例如,如果您正在执行#include <string> ,这表明您实际上using的是std::string而不是其他的字符串的版本。

If that's the case, your use of std::string is odd.如果是这种情况,您对std::string的使用很奇怪。 Typically strcmp() requires a pointer to a C-style array of chars or the type const char* ... as does printf() ... so you should append .c_str() to your usages of name and candidates[n - i].name .通常strcmp()需要一个指向 C 样式的字符数组或类型const char*的指针 ... printf() ... 所以你应该 append .c_str()来使用你的name和 Candidate candidates[n - i].name

Ie strcmp(candidates[i].name.c_str(), name.c_str()) and printf("%s ", candidates[n - i].name.c_str());strcmp(candidates[i].name.c_str(), name.c_str())printf("%s ", candidates[n - i].name.c_str());

Again, though, that's assuming you're actually using std::string .不过,再次假设您实际上正在使用std::string

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM