cv5
This commit is contained in:
parent
67846c51bd
commit
9318117a6a
@ -4,80 +4,79 @@
|
|||||||
|
|
||||||
#define SIZE 100
|
#define SIZE 100
|
||||||
|
|
||||||
|
// Štruktúra pre uloženie informácií o študentovi
|
||||||
struct student {
|
struct student {
|
||||||
char name[SIZE];
|
char name[SIZE];
|
||||||
int votes;
|
int votes;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Funkcia pre porovnanie dvoch študentov pri triedení
|
// Funkcia pre porovnanie dvoch študentov
|
||||||
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 podľa počtu hlasov
|
// Porovnáme najprv počet hlasov
|
||||||
int result = s2->votes - s1->votes;
|
if (s1->votes != s2->votes) {
|
||||||
if (result == 0) {
|
return s2->votes - s1->votes; // Zoradíme zostupne podľa počtu hlasov
|
||||||
|
} else {
|
||||||
// Ak majú rovnaký počet hlasov, zoradíme lexikograficky podľa mena
|
// Ak majú rovnaký počet hlasov, zoradíme lexikograficky podľa mena
|
||||||
return strcmp(s1->name, s2->name);
|
return strcmp(s1->name, s2->name);
|
||||||
}
|
}
|
||||||
return result;
|
}
|
||||||
|
|
||||||
|
// 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; // Nájdený študent
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1; // Študent nebol nájdený
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
struct student students[SIZE];
|
struct student database[SIZE]; // Databáza študentov
|
||||||
memset(students, 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
|
||||||
|
|
||||||
|
// Načítanie hlasov zo vstupu
|
||||||
char line[SIZE];
|
char line[SIZE];
|
||||||
|
while (fgets(line, SIZE, stdin) != NULL) {
|
||||||
char name[SIZE];
|
char name[SIZE];
|
||||||
int votes;
|
int votes;
|
||||||
|
// Rozdelenie riadku na počet hlasov a meno študenta
|
||||||
//printf("Enter votes for 'Student of the Year' contest (or 'q' to quit):\n");
|
if (sscanf(line, "%d %s", &votes, name) != 2) {
|
||||||
|
fprintf(stderr, "Chybný formát vstupu!\n");
|
||||||
while (fgets(line, SIZE, stdin) != NULL) {
|
|
||||||
// Kontrola ukončenia vstupu
|
|
||||||
if (strcmp(line, "q\n") == 0 || strcmp(line, "Q\n") == 0) {
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Načítanie počtu hlasov a mena zo vstupu
|
|
||||||
if (sscanf(line, "%d %[^\n]", &votes, name) != 2) {
|
|
||||||
//printf("Invalid input format. Exiting.\n");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Vyhľadanie študenta v databáze
|
// Vyhľadanie študenta v databáze
|
||||||
int index = -1;
|
int index = find_student(database, size, name);
|
||||||
for (int i = 0; i < size; i++) {
|
|
||||||
if (strcmp(students[i].name, name) == 0) {
|
|
||||||
index = i;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Ak študent nie je v databáze, pridáme ho
|
|
||||||
if (index == -1) {
|
if (index == -1) {
|
||||||
|
// Nový študent
|
||||||
if (size < SIZE) {
|
if (size < SIZE) {
|
||||||
strcpy(students[size].name, name);
|
// Pridanie študenta do databázy
|
||||||
students[size].votes = votes;
|
strcpy(database[size].name, name);
|
||||||
|
database[size].votes = votes;
|
||||||
size++;
|
size++;
|
||||||
} else {
|
} else {
|
||||||
printf("Database is full. Exiting.\n");
|
fprintf(stderr, "Databáza je plná!\n");
|
||||||
return 1;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Ak študent už existuje, zvýšime počet hlasov
|
// Existujúci študent, pridáme hlasy
|
||||||
students[index].votes += votes;
|
database[index].votes += votes;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Triedenie databázy podľa počtu hlasov a mena
|
// Zoradenie databázy podľa počtu hlasov a mena
|
||||||
qsort(students, size, sizeof(struct student), compare);
|
qsort(database, size, sizeof(struct student), compare);
|
||||||
|
|
||||||
// Výpis výsledkov
|
// Výpis výsledkov
|
||||||
printf("\nResults:\n");
|
printf("Výsledky:\n");
|
||||||
for (int i = 0; i < size; i++) {
|
for (int i = 0; i < size; ++i) {
|
||||||
printf("%d %s\n", students[i].votes, students[i].name);
|
printf("%d %s\n", database[i].votes, database[i].name);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user