土耳其字母表的凯撒密码解密

时间:2013-03-21 13:19:35

标签: c++ character-encoding

我在互联网上找到了很多例子但是找不到土耳其字母表的Ceaser密码解密。大多数字母与英文字母相似,但存在一些差异 这是土耳其语字母:

A B C Ç D E F G Ğ H I İ J K L M N O Ö P R S Ş T U Ü V Y Z

a b c ç d e f g ğ h i ı j k l m n o ö p r s ş t u ü v y z

我发现这个英文字母的代码,它没有像İ,Ö,Ü,Ş,ç,ğ,ı,ö,ş,ü:

这样的字母
#include <iostream>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
using namespace std;

int main()
{
    char code[501];
    int shift, len, i=0, j=0;

    cout << "Caesar Cipher Decoder " << endl;
    cout << "\nThis program will decrypt the entered text using Caesar Cipher." << endl;
    cout << "\nPress any key to continue...";
    _getch();

    system("cls");
    cout << "Enter the text that has to be decrypted (max 500 characters):" << endl;
    cin.getline(code, 501);
    len = strlen(code);

    while (j < len)
    {
        if(code[j] == 32)
        {
            code[j] = code[j];
        }

        j++;
    }

    po:
    cout << "\nEnter the amount of Caseser Shift in numbers: ";
    cin >> shift;
    if ((shift > 26) || (shift < 0))
    {
        cout << "\nShift value should be less than or equal to 26. Type again." << endl;
        goto po;
    }

    while (i < len)
    {

        code[i] = tolower(code[i]);
        code[i] = code[i] - shift;

        if (code[i] + shift == 32)
        {
            code[i] = code[i] + shift;
        }

        else if(
                ((code[i] + shift > 31) && (code[i] + shift < 65)
                || ((code[i] + shift > 90) && (code[i] + shift < 97))
                || ((code[i] + shift > 122) && (code[i] + shift < 128)))
                )
                {
                    code[i] = code[i] + shift;
                }

        else if (code[i] < 97)
        {
            if (code[i] == 32 - shift)
            {
                code[i] = code[i] + shift;
            }
            else
            {
                code[i] = (code[i] + 26);
            }
        }
        i++;
    }
    system("cls");
    cout << "\nYour deciphered code is: \"" << code << "\"" << endl;

    cout << "\nYour text has been decrypted." << endl;
    cout << "\nPress any key to end." << endl;
    _getch();

    return 0;
}

请帮我为土耳其语字母表做这项工作。

1 个答案:

答案 0 :(得分:4)

您发布的示例代码依赖于标准拉丁字母是ASCII表中的连续块的事实。土耳其语字母表的情况并非如此,因此您必须以不同方式解决问题。

我建议你使用替换表。创建一个包含256个字符的数组(每个代码点对应一个字符编码表)并使用应该使用的字母填充每个代码点而不是它。然后迭代输入文本并通过在该数组中查找来替换每个字符。