解题思路:
根据输入建立译码表
检查2、3情况的发生
注意事项:
参考代码:
#include <iostream> // #include <sstream> // #include <cstdio> // #include <algorithm> // #include <cmath> // #include <cstdlib> #include <cstring> // #include <cctype> // #include <string> // #include <climits> // #include <map> // #include <vector> // #include <list> // #include <set> using namespace std; // const int maxn = 40004; // const long long MOD = 100000007; // const double PI = acos(-1.0); int main() { // input string origi, encry, r; cin >> origi >> encry >> r; // construct decode map char decode[26]; // 'A'->decode[0], 'B'->decode[1], ... memset( decode, 0, 26 * sizeof (char) ); bool is_failed = false; for (int i = 0; i < origi.size(); i++) { char *pch = &decode[ origi[ i ] - 'A' ]; if (*pch == 0) *pch = encry[ i ]; else if (*pch != encry[ i ]) { // situation 3 is_failed = true; break; } } if ( ! is_failed ) { // check situation 2 for (int i = 0; i < 26; i++) { if (decode[ i ] == 0) { is_failed = true; break; } } } // output if ( is_failed ) cout << "Failed" << endl; else { for (int i = 0; i < r.size(); i++) { cout << decode[ r[ i ] - 'A' ]; } cout << endl; } return 0; }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:790 |
计算质因子 (C++代码)浏览:1825 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:806 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:674 |
【计算两点间的距离】 (C语言代码)浏览:1522 |
完数 (C语言代码)浏览:757 |
循环入门练习6 (C语言代码)浏览:1058 |
勾股数 (C语言代码)浏览:830 |
小O的乘积 (C语言代码)浏览:1062 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:444 |