c-带有bool-CS50复数的分段故障



我正在处理cs50复数问题。当我试图投票给一个不在我的argv中的候选人时,我期待着";无效的投票。\n〃;要打印,但是我的程序以Sementation错误结束。有人能解释一下原因吗?我认为我投票的逻辑可能有缺陷,但我不确定。非常感谢。

#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 %in", 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 < MAX; i++)
{
if (strcmp(candidates[i].name, name) == 0)
{
return true;

}
}
return false;

}
// Print the winner (or winners) of the election
void print_winner(void)
{
// TODO
return;
}

。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。…………..

在函数vote()中,循环

for (int i = 0; i < MAX; i++)

正在检查每条记录的字符串,包括那些带有NULL指针的字符串
您应该使用candidate_count元素集的数量。

for (int i = 0; i < candidate_count; i++)

只有在找不到与名称匹配的情况下才会出错,因为循环索引只会超过记录的名称数。

相关内容

  • 没有找到相关文章

最新更新