2024-03-20 11:41:33 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define SIZE 100
|
|
|
|
|
|
|
|
|
|
|
|
struct student {
|
|
|
|
char name[SIZE];
|
|
|
|
int votes;
|
|
|
|
};
|
|
|
|
/*char* read_line(char* buffer, int size) {
|
|
|
|
char* result = fgets(buffer, size, stdin);
|
|
|
|
if (result) {
|
|
|
|
// Удаление символа новой строки, если он есть
|
|
|
|
char* newline = strchr(buffer, '\n');
|
|
|
|
if (newline)
|
|
|
|
*newline = '\0';
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
2024-03-20 11:55:44 +00:00
|
|
|
/*char* read_line(char* buffer, int size) {
|
2024-03-20 11:41:33 +00:00
|
|
|
char* result = fgets(buffer, size, stdin);
|
|
|
|
if (result) {
|
|
|
|
|
|
|
|
buffer[strcspn(buffer, "\n")] = '\0';
|
|
|
|
}
|
|
|
|
return result;
|
2024-03-20 11:55:44 +00:00
|
|
|
}*/
|
|
|
|
|
|
|
|
int read_input(int* votes, char* name, int size) {
|
|
|
|
char line[SIZE];
|
|
|
|
if (fgets(line, size, stdin) != NULL) {
|
|
|
|
|
|
|
|
if (sscanf(line, "%d %s", votes, name) == 2) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
2024-03-20 11:41:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int parse_int(const char* str) {
|
|
|
|
return atoi(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
int find_student(struct student* students, int size, const char* name) {
|
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
if (strcmp(students[i].name, name) == 0) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void add_student(struct student* students, int* size, const char* name, int votes) {
|
|
|
|
|
|
|
|
int index = find_student(students, *size, name);
|
|
|
|
if (index == -1) {
|
|
|
|
if (*size < SIZE) {
|
|
|
|
strcpy(students[*size].name, name);
|
|
|
|
students[*size].votes = votes;
|
|
|
|
(*size)++;
|
|
|
|
} else {
|
|
|
|
printf("Database is crowded!\n");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
students[index].votes += votes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int compare_students(const void* p1, const void* p2) {
|
|
|
|
const struct student* s1 = (const struct student*)p1;
|
|
|
|
const struct student* s2 = (const struct student*)p2;
|
|
|
|
|
|
|
|
|
|
|
|
if (s1->votes != s2->votes) {
|
|
|
|
return s2->votes - s1->votes;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return strcmp(s1->name, s2->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-20 11:48:07 +00:00
|
|
|
/*int main() {
|
2024-03-20 11:41:33 +00:00
|
|
|
struct student database[SIZE];
|
|
|
|
int size = 0;
|
|
|
|
|
|
|
|
char line[SIZE];
|
|
|
|
|
|
|
|
|
|
|
|
while (read_line(line, SIZE)) {
|
|
|
|
int votes = parse_int(line);
|
|
|
|
read_line(line, SIZE);
|
|
|
|
add_student(database, &size, line, votes);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
qsort(database, size, sizeof(struct student), compare_students);
|
|
|
|
|
|
|
|
|
|
|
|
printf("Vysledky hlasovania:\n");
|
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
printf("%s: %d Hlas(ov) \n", database[i].name, database[i].votes);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2024-03-20 11:48:07 +00:00
|
|
|
}*/
|
2024-03-20 11:55:44 +00:00
|
|
|
int main() {
|
|
|
|
struct student database[SIZE];
|
|
|
|
int size = 0;
|
|
|
|
|
|
|
|
int votes;
|
|
|
|
char name[SIZE];
|
|
|
|
|
|
|
|
|
|
|
|
while (read_input(&votes, name, SIZE)) {
|
|
|
|
add_student(database, &size, name, votes);
|
|
|
|
qsort(database, size, sizeof(struct student), compare_students);
|
|
|
|
|
|
|
|
|
|
|
|
printf("Vysledky hlasovania:\n");
|
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
printf("%d %s\n", database[i].votes, database[i].name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|