博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Parlindromes UVa401
阅读量:5154 次
发布时间:2019-06-13

本文共 4683 字,大约阅读时间需要 15 分钟。

Description:

A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when the string is read from left to right as when the string is read from right to left.

 

A mirrored string is a string for which when each of the elements of the string is changed to its reverse (if it has a reverse) and the string is read backwards the result is the same as the original string. For example, the string "3AIAE" is a mirrored string because "A" and "I" are their own reverses, and "3" and "E" are each others' reverses.

A mirrored palindrome is a string that meets the criteria of a regular palindrome and the criteria of a mirrored string. The string "ATOYOTA" is a mirrored palindrome because if the string is read backwards, the string is the same as the original and because if each of the characters is replaced by its reverse and the result is read backwards, the result is the same as the original string.

Of course,"A","T", "O", and "Y" are all their own reverses.

A list of all valid characters and their reverses is as follows.                                                        every char's reverse

Character Reverse Character Reverse Character Reverse
A A M M Y Y
B   N   Z 5
C   O O 1 1
D   P   2 S
E 3 Q   3 E
F   R   4  
G   S 2 5 Z
H H T T 6  
I I U U 7  
J L V V 8 8
K   W W 9  
L J X X    

Note that O (zero) and 0 (the letter) are considered the same character and therefore ONLY the letter "0" is a valid character.

Input

Input consists of strings (one per line) each of which will consist of one to twenty valid characters. There will be no invalid characters in any of the strings. Your program should read to the end of file.

Output

For each input string, you should print the string starting in column 1 immediately followed by exactly one of the following strings.

STRING CRITERIA
" -- is not a palindrome." if the string is not a palindrome and is not a mirrored string
" -- is a regular palindrome." if the string is a palindrome and is not a mirrored string
" -- is a mirrored string." if the string is not a palindrome and is a mirrored string
" -- is a mirrored palindrome." if the string is a palindrome and is a mirrored string

Note that the output line is to include the -'s and spacing exactly as shown in the table above and demonstrated in the Sample Output below.

In addition, after each output line, you must print an empty line.

Sample Input

NOTAPALINDROME ISAPALINILAPASI 2A3MEAS ATOYOTA

Sample Output

NOTAPALINDROME -- is not a palindrome. ISAPALINILAPASI -- is a regular palindrome. 2A3MEAS -- is a mirrored string. ATOYOTA -- is a mirrored palindrome. The code:
1 #include
2 #include
3 #include
4 #define maxn 100 5 6 //using the const char array to simplify the code instead of 'case' or some others. 7 char *a = "A 3 HIL JM O 2TUVWXY51SE Z 8 "; 8 char *b[] = {
"is not a palindrome.", "is a regular palindrome.", "is a mirrored string.", "is a mirrored palindrome."}; 9 10 11 12 char r(char ch) //utilize the method to simplify the code.13 {14 if(isalpha(ch)) return a[ch - 'A'] ;15 else return a[ch- '1' + 26];16 }17 int main()18 {19 char c[maxn];20 while(scanf("%s",c) ==1)21 {22 int length = strlen(c); //count the number of char before \0.23 int taq1 = 1 , taq2 = 1;24 for (int i = 0; i < (length+1)/2; i++)25 {26 27 if(c[i] != c[length-i-1]) taq1 = 0;28 if(r(c[length-i-1]) != c[i]) taq2 = 0;29 30 }31 //Choose initilize the taq with 1, if it does not mach the condition, it will be 0;32 //instead of every time judging the value's condition.33 //This is the code written by me before, but now it is abandoned!34 /*35 for(i = 0; i < (length+1)/2; i++)36 {37 if(isalpha(c[i]))38 {39 if(c[length-i-1] == a[(c[i]-'A')]) taq2 = 1;40 else{ taq2 = 0; break; }41 }42 else43 {44 if(c[length-i-1] == a[(c[i]-'1'+26)]) taq2 = 1;45 else{ taq2 = 0; break; }46 }47 }48 */49 printf("%s -- %s\n\n",c,b[2*taq2+taq1]);//maybe it can be written by judging four conditions by 'if'.And meanwhile we nee to print an empty line.50 }51 return 0;52 }

The most import thing is to understand the analysis ot ideas, such as the using of const char array, different indexes's situable positions and so on.

转载于:https://www.cnblogs.com/dreamworldclark/p/9400144.html

你可能感兴趣的文章
JIRA
查看>>
小技巧——直接在目录中输入cmd然后就打开cmd命令窗口
查看>>
深浅拷贝(十四)
查看>>
HDU 6370(并查集)
查看>>
BZOJ 1207(dp)
查看>>
HDU 2076 夹角有多大(题目已修改,注意读题)
查看>>
洛谷P3676 小清新数据结构题(动态点分治)
查看>>
九校联考-DL24凉心模拟Day2T1 锻造(forging)
查看>>
Attributes.Add用途与用法
查看>>
L2-001 紧急救援 (dijkstra+dfs回溯路径)
查看>>
javascript 无限分类
查看>>
spring IOC装配Bean(注解方式)
查看>>
[面试算法题]有序列表删除节点-leetcode学习之旅(4)
查看>>
SpringBoot系列五:SpringBoot错误处理(数据验证、处理错误页、全局异常)
查看>>
kubernetes_book
查看>>
侧边栏广告和回到顶部
查看>>
https://blog.csdn.net/u012106306/article/details/80760744
查看>>
海上孤独的帆
查看>>
处理程序“PageHandlerFactory-Integrated”在其模块列表中有一个错误模块“Manag
查看>>
01: socket模块
查看>>