#include #include #include #define SIZE 100 // Definícia štruktúry pre uchovanie informácií o študentovi struct student { char name[SIZE]; int votes; }; // 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; // Porovnávanie podľa počtu hlasov, ak sú rovnaké, potom podľa abecedy if (s1->votes != s2->votes) { return s2->votes - s1->votes; // Zoradenie zostupne podľa počtu hlasov } else { return strcmp(s1->name, s2->name); // Zoradenie abecedne } } int main() { 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 // Pevne definovaný zoznam študentov s počtom hlasov char input[][SIZE] = { "2 Bardos Mrtakrys", "1 Rita Umhi", "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 hlasov for (int i = 0; i < input_size; i++) { int votes; char name[SIZE]; sscanf(input[i], "%d %[^\n]", &votes, name); // Hľadanie študenta v databáze int index = -1; for (int j = 0; j < size; j++) { if (strcmp(database[j].name, name) == 0) { index = j; break; } } // Aktualizácia databázy if (index == -1) { // Študent ešte nie je v databáze strcpy(database[size].name, name); database[size].votes = votes; size++; } else { // Študent je už v databáze database[index].votes += votes; } } // Zoradenie databázy podľa počtu hlasov a abecedne qsort(database, size, sizeof(struct student), compare); // Výpis výsledkov printf("Vysledky:\n"); for (int i = 0; i < size; i++) { printf("%d %s\n", database[i].votes, database[i].name); } return 0; }