funguje
This commit is contained in:
parent
6e6b18e067
commit
edb0ecca92
@ -18,6 +18,17 @@ int find_student_index(Student* students, int num_students, const char* meno) {
|
|||||||
return -1; // Študent neexistuje
|
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() {
|
int main() {
|
||||||
char line[SIZE];
|
char line[SIZE];
|
||||||
int num_students = 0;
|
int num_students = 0;
|
||||||
@ -74,6 +85,9 @@ int main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Triedenie databázy
|
||||||
|
qsort(students, num_students, sizeof(Student), compare);
|
||||||
|
|
||||||
// Výpis výsledkov
|
// Výpis výsledkov
|
||||||
printf("Vysledky:\n");
|
printf("Vysledky:\n");
|
||||||
for (int i = 0; i < num_students; i++) {
|
for (int i = 0; i < num_students; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user