Update cv1/program.c
This commit is contained in:
parent
c736f318b0
commit
ca70580c57
138
cv1/program.c
138
cv1/program.c
@ -2,93 +2,87 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#define MAX_DISHES 100
|
// Функція для порівняння символів за правилами Hack3r scr1pt
|
||||||
#define MAX_NAME_LENGTH 100
|
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
|
c1 = tolower(c1);
|
||||||
void to_hacker_script(char *input, char *output) {
|
c2 = tolower(c2);
|
||||||
while (*input) {
|
|
||||||
switch (*input) {
|
if (c1 == c2) return 1;
|
||||||
case 'o':
|
return table[(unsigned char)c1] == c2;
|
||||||
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';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
// Функція для перевірки наявності ключового слова в назві
|
||||||
char search_term[MAX_NAME_LENGTH];
|
int isHack3rMatch(const char *name, const char *search) {
|
||||||
char dish_name[MAX_NAME_LENGTH];
|
int name_len = strlen(name);
|
||||||
char dish_price[MAX_NAME_LENGTH];
|
int search_len = strlen(search);
|
||||||
char hacker_search[MAX_NAME_LENGTH];
|
|
||||||
|
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;
|
int count = 0;
|
||||||
|
|
||||||
printf("Zadaj hladanu surovinu:");
|
printf("Zadaj hladanu surovinu:");
|
||||||
scanf("%s", search_term);
|
fgets(name, sizeof(name), stdin);
|
||||||
|
name[strcspn(name, "\n")] = 0; // Видаляємо символ нового рядка
|
||||||
// Prekonvertovanie hladanej suroviny do Hacker script
|
|
||||||
to_hacker_script(search_term, hacker_search);
|
|
||||||
|
|
||||||
printf("Zadaj jedalny listok:\n");
|
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;
|
break;
|
||||||
}
|
}
|
||||||
scanf("%s", dish_price);
|
|
||||||
|
|
||||||
// Vytvorenie prekonvertovanej názvu jedla
|
if(line[0] == '\0')
|
||||||
char hacker_dish_name[MAX_NAME_LENGTH];
|
{
|
||||||
to_hacker_script(dish_name, hacker_dish_name);
|
break;
|
||||||
|
|
||||||
// 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 (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);
|
printf("Nacitanych %d poloziek.\n", count);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user