-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplurality.c
107 lines (89 loc) · 1.94 KB
/
plurality.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include <cs50.h>
// Max number of candidates
#define MAX 9
int s = 0;
int max = 0;
// Candidates have name and vote count
typedef struct
{
char *name;
int votes;
}
candidate;
// Array of candidates
candidate candidates[MAX];
// Number of candidates
int candidate_count;
// Function prototypes
int vote(char* name);
void print_winner(void);
int main(int argc, char * 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;
char name[30];
printf("Number of voters: ");
scanf("%d", &voter_count);
// Loop over all voters
for (int i = 0; i < voter_count; i++)
{
printf("Vote: ");
scanf("%s", name);
// Check for invalid vote
if (vote(name) != 1)
{
printf("Invalid vote.\n");
}
}
// Display winner of election
print_winner();
return 0;
}
// Update vote totals given a new vote
int vote(char * name)
{
// TODO
for(int i = 0; i <candidate_count; i++)
{
if(strcmp(candidates[i].name, name) ==0)
{ candidates[i].votes++;
return 1 ;
}
}
return 0;
}
// Print the winner (or winners) of the election
void print_winner(void)
{
for(int i = 0; i < candidate_count; i++ )
{
if(max <= candidates[i].votes)
max = candidates[i].votes;
}
for(int i = 0; i < candidate_count; i++)
{
if (candidates[i].votes == max)
printf("%s\n", candidates[i].name);
}
}