This commit is contained in:
Tančáková 2024-03-21 23:58:42 +01:00
parent 00a96fbf44
commit 71e5daa9f9

View File

@ -2,53 +2,73 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#define MAX_STUDENTS 100 #define SIZE 100 // Veľkosť pomocného poľa pre načítanie riadku
#define MAX_NAME_LENGTH 100
// Štruktúra pre reprezentáciu študenta // Definícia štruktúry pre študenta
struct Student { struct student {
char name[MAX_NAME_LENGTH]; char name[50];
int votes; int votes;
}; };
// Porovnávacia funkcia pre qsort // Funkcia na porovnanie študentov pri triedení
int compare_students(const void* a, const void* b) { int compare(const void *s1, const void *s2) {
const struct Student* studentA = (const struct Student*)a; struct student *student1 = (struct student *)s1;
const struct Student* studentB = (const struct Student*)b; struct student *student2 = (struct student *)s2;
// Porovnanie podľa počtu hlasov // Ak majú rôzny počet hlasov, porovnáme podľa počtu hlasov
if (studentA->votes != studentB->votes) { if (student1->votes != student2->votes) {
return studentB->votes - studentA->votes; // Zotriedenie zostupne podľa počtu hlasov return student2->votes - student1->votes; // Zoradenie zostupne podľa počtu hlasov
} else { } else {
// Ak majú rovnaký počet hlasov, zotriedenie podľa mena // Ak majú rovnaký počet hlasov, porovnáme podľa abecedy
return strcmp(studentA->name, studentB->name); return strcmp(student1->name, student2->name);
} }
} }
int main() { int main() {
// Databáza študentov s preddefinovanými hodnotami struct student students[100]; // Pole pre ukladanie študentov
struct Student students[MAX_STUDENTS] = { int num_students = 0; // Počet načítaných študentov
{"Terian Dis", 10}, // Terian Dis má 10 hlasov
{"Bardos Mrtakrys", 2}, // Načítanie hlasov zo vstupu
{"Rita Umhi", 1}, while (1) {
{"Prylenn Alak", 1}, int votes;
{"Lak'hi Elavorg", 9}, // Lak'hi Elavorg má menej ako 10 hlasov char name[50];
{"Prylenn Alak", 3}, char line[SIZE];
{"Prylenn Alak", 3},
{"Prylenn Alak", 3}, // Načítame riadok zo vstupu
{"Rita Umhi", 1} memset(line, 0, SIZE);
}; char* r = fgets(line, SIZE, stdin);
int num_students = 9; // Počet študentov v databáze if (r == NULL) {
// Koniec vstupu
// Zoradenie študentov podľa počtu hlasov a mena break;
qsort(students, num_students, sizeof(struct Student), compare_students); }
// Výpis zoradeného zoznamu študentov // Načítame hlas a meno študenta zo vstupného riadku
printf("Výsledky:\n"); if (sscanf(line, "%d %49[^\n]", &votes, name) == 2) {
for (int i = 0; i < num_students; i++) { // Ak sme načítali záznam úspešne, pridáme študenta do databázy
printf("%d %s\n", students[i].votes, students[i].name); strcpy(students[num_students].name, name);
students[num_students].votes = votes;
num_students++;
} else {
// Ak sa nepodarilo načítať, skončíme načítavanie
printf("CHYBA: Neplatny zapis na riadku.\n");
return 1;
}
} }
// Ak sme načítali aspoň jedného študenta, zoradíme ich podľa počtu hlasov a mena
if (num_students > 0) {
qsort(students, num_students, sizeof(struct student), compare);
// Výpis výsledkov
printf("Vysledky:\n");
for (int i = 0; i < num_students; i++) {
printf("%d %s\n", students[i].votes, students[i].name);
}
} else {
// Ak sme nenenačítali žiadneho študenta, vypíšeme chybovú správu
printf("CHYBA: Ziadny zaznam na vstupe.\n");
}
return 0; return 0;
} }