This commit is contained in:
Tančáková 2024-03-22 00:13:59 +01:00
parent 6e6b18e067
commit edb0ecca92

View File

@ -18,6 +18,17 @@ int find_student_index(Student* students, int num_students, const char* meno) {
return -1; // Študent neexistuje
}
int compare(const void* p1, const void* p2) {
const Student* s1 = (const Student*)p1;
const Student* s2 = (const Student*)p2;
// Porovnanie podľa počtu hlasov
if (s1->hlasov != s2->hlasov) {
return s2->hlasov - s1->hlasov; // Zoradenie zostupne
}
// Ak majú rovnaký počet hlasov, zoradíme podľa mena
return strcmp(s1->meno, s2->meno);
}
int main() {
char line[SIZE];
int num_students = 0;
@ -74,6 +85,9 @@ int main() {
}
}
// Triedenie databázy
qsort(students, num_students, sizeof(Student), compare);
// Výpis výsledkov
printf("Vysledky:\n");
for (int i = 0; i < num_students; i++) {