2024-03-13 09:55:11 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2024-03-20 14:57:31 +00:00
|
|
|
#define SIZE 100
|
2024-03-20 14:08:46 +00:00
|
|
|
|
2024-03-20 14:57:31 +00:00
|
|
|
struct student {
|
2024-03-20 15:42:19 +00:00
|
|
|
char name[SIZE];
|
2024-03-20 14:57:31 +00:00
|
|
|
int votes;
|
|
|
|
};
|
2024-03-13 09:55:11 +00:00
|
|
|
|
2024-03-20 16:43:01 +00:00
|
|
|
void initialize_database(struct student* database, int size, char* names[], int* votes) {
|
2024-03-20 16:26:54 +00:00
|
|
|
for (int i = 0; i < size; i++) {
|
2024-03-20 16:43:01 +00:00
|
|
|
strcpy(database[i].name, names[i]);
|
|
|
|
database[i].votes = votes[i];
|
2024-03-20 15:22:08 +00:00
|
|
|
}
|
2024-03-20 14:57:31 +00:00
|
|
|
}
|
2024-03-20 15:22:08 +00:00
|
|
|
|
2024-03-20 16:52:10 +00:00
|
|
|
// Pomocná funkcia na porovnanie dvoch študentov
|
|
|
|
int compare_students(const void* a, const void* b) {
|
|
|
|
const struct student* studentA = (const struct student*)a;
|
|
|
|
const struct student* studentB = (const struct student*)b;
|
|
|
|
|
|
|
|
// Ak majú študenti rôzny počet hlasov, porovnáme ich podľa počtu hlasov
|
|
|
|
if (studentA->votes != studentB->votes) {
|
|
|
|
return studentB->votes - studentA->votes; // Zoradenie zostupne podľa počtu hlasov
|
|
|
|
} else {
|
|
|
|
// Ak majú rovnaký počet hlasov, porovnáme ich abecedne podľa mena
|
|
|
|
return strcmp(studentA->name, studentB->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-20 15:22:08 +00:00
|
|
|
int main() {
|
2024-03-20 16:26:54 +00:00
|
|
|
struct student database[SIZE];
|
|
|
|
memset(database, 0, SIZE * sizeof(struct student));
|
2024-03-20 16:52:10 +00:00
|
|
|
int size = 10; // Veľkosť databázy mien študentov
|
|
|
|
char* names[10] = {"Bardos Mrtakrys", "Rita Umhi", "Prylenn Alak", "Lak'hi Elavorg", "Prylenn Alak", "Prylenn Alak", "Prylenn Alak", "Rita Umhi", "Terian Dis"};
|
2024-03-20 16:56:02 +00:00
|
|
|
int votes[10] = {2, 1, 1, 9, 3, 3, 3, 1, 10}; // Počet hlasov pre každého študenta
|
2024-03-20 16:26:54 +00:00
|
|
|
|
2024-03-20 16:43:01 +00:00
|
|
|
initialize_database(database, size, names, votes); // Inicializácia databázy mien študentov
|
2024-03-20 16:31:33 +00:00
|
|
|
|
2024-03-20 16:52:10 +00:00
|
|
|
// Zoradenie databázy študentov podľa počtu hlasov a abecedne
|
|
|
|
qsort(database, size, sizeof(struct student), compare_students);
|
|
|
|
|
|
|
|
// Výpis zoradenej databázy
|
|
|
|
printf("Zoradeny zoznam studentov podla poctu hlasov a abecedne:\n");
|
2024-03-20 16:36:26 +00:00
|
|
|
for (int i = 0; i < size; i++) {
|
|
|
|
printf("%d %s\n", database[i].votes, database[i].name);
|
2024-03-20 15:22:08 +00:00
|
|
|
}
|
2024-03-20 16:26:54 +00:00
|
|
|
|
2024-03-20 15:22:08 +00:00
|
|
|
return 0;
|
2024-03-13 09:55:11 +00:00
|
|
|
}
|
|
|
|
|