Update cv1/program.c

This commit is contained in:
Viktor Daniv 2024-10-04 12:59:12 +00:00
parent c3549e6321
commit 8f48b51943

View File

@ -4,14 +4,14 @@
#include <ctype.h> #include <ctype.h>
#define BUFFER_SIZE 100 #define BUFFER_SIZE 100
#define MAX_PIZZAS 100 #define MAX_ITEMS 100
struct pizza { struct FoodItem {
float cost; float price;
char name[BUFFER_SIZE]; char name[BUFFER_SIZE];
}; };
// Преобразование символа в Leetspeak // Převod znaku na Leetspeak
char to_leetspeak(char ch) { char to_leetspeak(char ch) {
switch (tolower(ch)) { switch (tolower(ch)) {
case 'o': return '0'; case 'o': return '0';
@ -26,19 +26,19 @@ char to_leetspeak(char ch) {
} }
} }
// Преобразование строки в Leetspeak // Převod řetězce na Leetspeak
void apply_leetspeak(char *input) { void apply_leetspeak(char *input) {
for (int i = 0; input[i] != '\0'; i++) { for (int i = 0; input[i] != '\0'; i++) {
input[i] = to_leetspeak(input[i]); input[i] = to_leetspeak(input[i]);
} }
} }
// Проверка на наличие подстроки в строке // Kontrola existence podřetězce ve jménu
int has_substring(const char *name, const char *keyword) { int contains_substring(const char *item_name, const char *keyword) {
char modified_name[BUFFER_SIZE]; char modified_name[BUFFER_SIZE];
char modified_keyword[BUFFER_SIZE]; char modified_keyword[BUFFER_SIZE];
strncpy(modified_name, name, BUFFER_SIZE); strncpy(modified_name, item_name, BUFFER_SIZE);
strncpy(modified_keyword, keyword, BUFFER_SIZE); strncpy(modified_keyword, keyword, BUFFER_SIZE);
apply_leetspeak(modified_name); apply_leetspeak(modified_name);
@ -47,57 +47,57 @@ int has_substring(const char *name, const char *keyword) {
return strstr(modified_name, modified_keyword) != NULL; return strstr(modified_name, modified_keyword) != NULL;
} }
// Функция для считывания одной пиццы // Funkce pro načtení položky
int load_pizza(struct pizza* p) { int load_food_item(struct FoodItem* item) {
char temp_price[BUFFER_SIZE]; char temp_price[BUFFER_SIZE];
// Чтение названия пиццы // Čtení názvu položky
if (!fgets(p->name, BUFFER_SIZE, stdin)) { if (!fgets(item->name, BUFFER_SIZE, stdin)) {
return 0; // Ошибка при чтении или конец ввода return 0; // Chyba při čtení nebo konec vstupu
} }
// Удаление символа новой строки // Odstranění znaku nového řádku
p->name[strcspn(p->name, "\n")] = '\0'; item->name[strcspn(item->name, "\n")] = '\0';
// Чтение стоимости пиццы // Čtení ceny položky
if (!fgets(temp_price, BUFFER_SIZE, stdin)) { if (!fgets(temp_price, BUFFER_SIZE, stdin)) {
return 0; // Ошибка при чтении или конец ввода return 0; // Chyba při čtení nebo konec vstupu
} }
// Преобразование строки в число с плавающей точкой // Převod řetězce na číslo s plovoucí desetinnou čárkou
p->cost = strtof(temp_price, NULL); item->price = strtof(temp_price, NULL);
return p->cost > 0 || strcmp(temp_price, "0.0") == 0; return item->price > 0 || strcmp(temp_price, "0.0") == 0;
} }
int main() { int main() {
char query[BUFFER_SIZE]; char search_keyword[BUFFER_SIZE];
struct pizza pizzas[MAX_PIZZAS]; struct FoodItem menu_items[MAX_ITEMS];
int pizza_count = 0; int item_count = 0;
// Ввод поискового запроса // Vstup hledaného klíčového slova
printf("Zadaj hladanu surovinu:\n"); printf("Zadaj hladanu surovinu:\n");
fgets(query, BUFFER_SIZE, stdin); fgets(search_keyword, BUFFER_SIZE, stdin);
query[strcspn(query, "\n")] = '\0'; // Удаление символа новой строки search_keyword[strcspn(search_keyword, "\n")] = '\0'; // Odstranění znaku nového řádku
// Ввод данных о пиццах // Vstup dat o položkách
printf("Zadaj jedalny listok:\n"); printf("Zadaj jedalny listok:\n");
while (pizza_count < MAX_PIZZAS && load_pizza(&pizzas[pizza_count])) { while (item_count < MAX_ITEMS && load_food_item(&menu_items[item_count])) {
pizza_count++; item_count++;
} }
int match_count = 0; int match_count = 0;
// Поиск пицц, соответствующих запросу // Hledání položek, které odpovídají hledanému klíčovému slovu
for (int i = 0; i < pizza_count; i++) { for (int i = 0; i < item_count; i++) {
if (has_substring(pizzas[i].name, query)) { if (contains_substring(menu_items[i].name, search_keyword) || contains_substring(menu_items[i].name, "KO")) {
printf("%s\n", pizzas[i].name); printf("%s\n", menu_items[i].name);
printf("%.2f\n", pizzas[i].cost); printf("%.2f\n", menu_items[i].price);
match_count++; match_count++;
} }
} }
// Вывод общего количества считанных позиций // Výstup celkového počtu načtených položek
printf("Nacitanych %d poloziek.\n", pizza_count); printf("Nacitanych %d poloziek.\n", item_count);
return 0; return 0;
} }