This commit is contained in:
Tančáková 2024-03-20 16:42:19 +01:00
parent 8062bddb66
commit a99412436b

View File

@ -3,79 +3,59 @@
#include <string.h> #include <string.h>
#define SIZE 100 #define SIZE 100
#define MAX_NAME_LENGTH 20
// Definícia štruktúry pre uloženie jednej položky databázy // Definícia štruktúry pre uchovanie informácií o študentovi
struct student { struct student {
char name[MAX_NAME_LENGTH]; char name[SIZE];
int votes; int votes;
}; };
// Funkcia pre porovnanie dvoch záznamov študentov // Funkcia pre porovnanie dvoch záznamov
int compare(const void *p1, const void *p2) { int compare(const void* p1, const void* p2){
const struct student *s1 = (const struct student *)p1; struct student* s1 = (struct student*)p1;
const struct student *s2 = (const struct student *)p2; struct student* s2 = (struct student*)p2;
// Porovnanie počtu hlasov // Porovnávanie podľa počtu hlasov, ak sú rovnaké, potom podľa abecedy
if (s1->votes != s2->votes) { if (s1->votes != s2->votes) {
return s2->votes - s1->votes; // Zoradenie zostupne podľa počtu hlasov return s2->votes - s1->votes; // Zoradenie zostupne podľa počtu hlasov
} else { } else {
// Ak majú rovnaký počet hlasov, zoradíme lexikograficky podľa mena return strcmp(s1->name, s2->name); // Zoradenie abecedne
return strcmp(s1->name, s2->name);
} }
} }
// Funkcia na vyhľadanie študenta v databáze
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; // Študent nájdený
}
}
return -1; // Študent nenájdený
}
int main() { int main() {
struct student database[SIZE]; struct student database[SIZE]; // Databáza študentov
memset(database, 0, SIZE * sizeof(struct student)); memset(database, 0, SIZE * sizeof(struct student)); // Inicializácia pamäte
int size = 0; int size = 0; // Aktuálny počet študentov v databáze
// Vlastný vstup mien a počtu hlasov // Načítanie vstupu a spracovanie hlasov
char *input[] = { char line[SIZE];
"2 Bardos Mrtakrys", while (fgets(line, SIZE, stdin) != NULL) {
"1 Rita Umhi", // Rozdelenie riadku na počet hlasov a meno
"1 Prylenn Alak",
"10 Lak'hi Elavorg",
"3 Prylenn Alak",
"3 Prylenn Alak",
"3 Prylenn Alak",
"1 Rita Umhi"
};
int input_size = sizeof(input) / sizeof(input[0]);
// Spracovanie vstupu
for (int i = 0; i < input_size; i++) {
char name[MAX_NAME_LENGTH];
int votes; int votes;
sscanf(input[i], "%d %s", &votes, name); char name[SIZE];
sscanf(line, "%d %[^\n]", &votes, name);
int idx = find_student(database, size, name); // Hľadanie študenta v databáze
if (idx == -1) { int index = -1;
// Študent nie je v databáze, pridáme ho for (int i = 0; i < size; i++) {
if (size >= SIZE) { if (strcmp(database[i].name, name) == 0) {
fprintf(stderr, "Prekročený limit databázy\n"); index = i;
return 1; break;
} }
}
// Aktualizácia databázy
if (index == -1) { // Študent ešte nie je v databáze
strcpy(database[size].name, name); strcpy(database[size].name, name);
database[size].votes = votes; database[size].votes = votes;
size++; size++;
} else { } else { // Študent je už v databáze
// Študent je v databáze, pripočítame hlasy database[index].votes += votes;
database[idx].votes += votes;
} }
} }
// Zoradenie databázy // Zoradenie databázy podľa počtu hlasov a abecedne
qsort(database, size, sizeof(struct student), compare); qsort(database, size, sizeof(struct student), compare);
// Výpis výsledkov // Výpis výsledkov