pvjc24/cv5/program.c

70 lines
2.0 KiB
C
Raw Normal View History

2024-03-13 09:55:11 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2024-03-20 14:57:31 +00:00
#define SIZE 100
2024-03-20 14:08:46 +00:00
2024-03-20 15:42:19 +00:00
// Definícia štruktúry pre uchovanie informácií o študentovi
2024-03-20 14:57:31 +00:00
struct student {
2024-03-20 15:42:19 +00:00
char name[SIZE];
2024-03-20 14:57:31 +00:00
int votes;
};
2024-03-13 09:55:11 +00:00
2024-03-20 15:42:19 +00:00
// Funkcia pre porovnanie dvoch záznamov
int compare(const void* p1, const void* p2){
struct student* s1 = (struct student*)p1;
struct student* s2 = (struct student*)p2;
2024-03-20 15:22:08 +00:00
2024-03-20 15:42:19 +00:00
// Porovnávanie podľa počtu hlasov, ak sú rovnaké, potom podľa abecedy
2024-03-20 15:22:08 +00:00
if (s1->votes != s2->votes) {
2024-03-20 15:27:29 +00:00
return s2->votes - s1->votes; // Zoradenie zostupne podľa počtu hlasov
2024-03-20 15:22:08 +00:00
} else {
2024-03-20 15:42:19 +00:00
return strcmp(s1->name, s2->name); // Zoradenie abecedne
2024-03-20 15:22:08 +00:00
}
2024-03-20 14:57:31 +00:00
}
2024-03-20 15:22:08 +00:00
int main() {
2024-03-20 15:42:19 +00:00
struct student database[SIZE]; // Databáza študentov
memset(database, 0, SIZE * sizeof(struct student)); // Inicializácia pamäte
int size = 0; // Aktuálny počet študentov v databáze
2024-03-20 15:27:29 +00:00
2024-03-20 15:42:19 +00:00
// Načítanie vstupu a spracovanie hlasov
char line[SIZE];
while (fgets(line, SIZE, stdin) != NULL) {
// Rozdelenie riadku na počet hlasov a meno
2024-03-20 15:29:47 +00:00
int votes;
2024-03-20 15:42:19 +00:00
char name[SIZE];
sscanf(line, "%d %[^\n]", &votes, name);
2024-03-20 15:29:47 +00:00
2024-03-20 15:42:19 +00:00
// Hľadanie študenta v databáze
int index = -1;
for (int i = 0; i < size; i++) {
if (strcmp(database[i].name, name) == 0) {
index = i;
break;
2024-03-20 15:22:08 +00:00
}
2024-03-20 15:42:19 +00:00
}
// Aktualizácia databázy
if (index == -1) { // Študent ešte nie je v databáze
2024-03-20 15:22:08 +00:00
strcpy(database[size].name, name);
database[size].votes = votes;
size++;
2024-03-20 15:42:19 +00:00
} else { // Študent je už v databáze
database[index].votes += votes;
2024-03-20 15:22:08 +00:00
}
}
2024-03-20 15:42:19 +00:00
// Zoradenie databázy podľa počtu hlasov a abecedne
2024-03-20 15:22:08 +00:00
qsort(database, size, sizeof(struct student), compare);
2024-03-20 15:34:15 +00:00
// Výpis výsledkov
printf("Výsledky:\n");
2024-03-20 15:22:08 +00:00
for (int i = 0; i < size; i++) {
printf("%d %s\n", database[i].votes, database[i].name);
}
return 0;
2024-03-13 09:55:11 +00:00
}