From ca70580c57636d16e4dbba0ef6cf2d90a2f4f8eb Mon Sep 17 00:00:00 2001 From: Viktor Daniv Date: Fri, 4 Oct 2024 12:50:33 +0000 Subject: [PATCH] Update cv1/program.c --- cv1/program.c | 142 ++++++++++++++++++++++++-------------------------- 1 file changed, 68 insertions(+), 74 deletions(-) diff --git a/cv1/program.c b/cv1/program.c index 3755107..3e2cf0e 100644 --- a/cv1/program.c +++ b/cv1/program.c @@ -2,93 +2,87 @@ #include #include -#define MAX_DISHES 100 -#define MAX_NAME_LENGTH 100 +// Функція для порівняння символів за правилами Hack3r scr1pt +int isHack3rEquivalent(char c1, char c2) { + char table[256] = {0}; + table['0'] = 'o'; table['o'] = '0'; + table['1'] = 'i'; table['i'] = '1'; + table['2'] = 'z'; table['z'] = '2'; + table['3'] = 'e'; table['e'] = '3'; + table['4'] = 'a'; table['a'] = '4'; + table['5'] = 's'; table['s'] = '5'; + table['6'] = 'b'; table['b'] = '6'; + table['7'] = 't'; table['t'] = '7'; + table['8'] = 'b'; table['b'] = '8'; + table['9'] = 'q'; table['q'] = '9'; -// Funkcia na prekonvertovanie textu do formátu Hacker script -void to_hacker_script(char *input, char *output) { - while (*input) { - switch (*input) { - case 'o': - case 'O': - *output++ = '0'; - break; - case 'i': - case 'I': - *output++ = '1'; - break; - case 'z': - case 'Z': - *output++ = '2'; - break; - case 'e': - case 'E': - *output++ = '3'; - break; - case 'a': - case 'A': - *output++ = '4'; - break; - case 's': - case 'S': - *output++ = '5'; - break; - case 'b': - case 'B': - *output++ = '6'; - break; - case 't': - case 'T': - *output++ = '7'; - break; - case 'q': - case 'Q': - *output++ = '9'; - break; - case '8': - *output++ = '8'; - break; - default: - *output++ = tolower(*input); - break; - } - input++; - } - *output = '\0'; + c1 = tolower(c1); + c2 = tolower(c2); + + if (c1 == c2) return 1; + return table[(unsigned char)c1] == c2; } -int main() { - char search_term[MAX_NAME_LENGTH]; - char dish_name[MAX_NAME_LENGTH]; - char dish_price[MAX_NAME_LENGTH]; - char hacker_search[MAX_NAME_LENGTH]; +// Функція для перевірки наявності ключового слова в назві +int isHack3rMatch(const char *name, const char *search) { + int name_len = strlen(name); + int search_len = strlen(search); + + for (int i = 0; i <= name_len - search_len; i++) { + int match = 1; + for (int j = 0; j < search_len; j++) { + if (!isHack3rEquivalent(name[i + j], search[j])) { + match = 0; + break; + } + } + if (match) return 1; + } + return 0; +} + +int main() +{ + char line[200]; + char name[100]; + char price[20]; int count = 0; - printf("Zadaj hladanu surovinu: "); - scanf("%s", search_term); - - // Prekonvertovanie hladanej suroviny do Hacker script - to_hacker_script(search_term, hacker_search); + printf("Zadaj hladanu surovinu:"); + fgets(name, sizeof(name), stdin); + name[strcspn(name, "\n")] = 0; // Видаляємо символ нового рядка printf("Zadaj jedalny listok:\n"); - - while (1) { - if (scanf("%s", dish_name) == EOF) { + + // Зчитуємо рядки, поки є вхідні дані + while (fgets(line, sizeof(line), stdin) != NULL) { + line[strcspn(line, "\n")] = 0; // Видаляємо символ нового рядка + + // Якщо рядок порожній, зупиняємо цикл + if (strcmp(line, "") == 0) { break; } - scanf("%s", dish_price); - // Vytvorenie prekonvertovanej názvu jedla - char hacker_dish_name[MAX_NAME_LENGTH]; - to_hacker_script(dish_name, hacker_dish_name); - - // Kontrola, či názov jedla obsahuje vyhľadávanú surovinu - if (strstr(hacker_dish_name, hacker_search) != NULL) { - printf("%s\n%s\n", dish_name, dish_price); - count++; + if(line[0] == '\0') + { + break; } + + // Зчитуємо наступний рядок, що містить ціну + if (fgets(price, sizeof(price), stdin) == NULL) { + break; // Якщо більше немає рядків, виходимо + } + price[strcspn(price, "\n")] = 0; // Видаляємо символ нового рядка + + // Якщо знайдено збіг, виводимо назву і ціну + if (isHack3rMatch(line, name)) { + printf("\n%s\n%s\n", line, price); + + } + count++; } printf("Nacitanych %d poloziek.\n", count); + return 0; } \ No newline at end of file