博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVA 题目401 - Palindromes
阅读量:4035 次
发布时间:2019-05-24

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

分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!

               

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.

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 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.

 

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.

 

NOTAPALINDROME ISAPALINILAPASI 2A3MEAS ATOYOTA

 

NOTAPALINDROME -- is not a palindrome. ISAPALINILAPASI -- is a regular palindrome. 2A3MEAS -- is a mirrored string. ATOYOTA -- is a mirrored palindrome.

【注意】:

题目意思:

判断输入的字符串是否是回文串还是镜面字符串。

回文串:从左到右读和从右到左读是一样的。

镜面字符串:如果某个字符有镜面字符,转换为相应的镜面字符。转换后从左到右读和从右到左读是一样的。

数字0和字母O是等价的。

【代码】:

/**********************************   日期:2013-4-22*   作者:SJF0115*   题号: 题目401 - Palindromes*   来源:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=6&page=show_problem&problem=342*   结果:AC*   来源:UVA*   总结:**********************************/#include
#include
char MirroredStr[] = {
'A',' ',' ',' ','3',' ',' ','H','I','L',' ','J','M',' ','O',' ',' ',' ','2','T','U','V','W','X','Y','5'};char MirroredNum[] = {
'1','S','E',' ','Z',' ',' ','8',' '};//判断是否是回文int IsPalindromes(char Str[]){ int i,j; for(i = 0,j = strlen(Str)-1;i < j;i++,j--){  //0 和 O等价  if((Str[i] == '0' && Str[j] == 'O') || (Str[i] == 'O' && Str[j] == '0')){   continue;  }  if(Str[i] != Str[j]){   return 0;  } } return 1;}//判断是否是镜像字符串int IsMirrored(char Str[]){ char temp[21]; int i,j,index; int len = strlen(Str); for(i = 0,j = len-1;i < len;i++,j--){  if(Str[i] >= 'A' && Str[i] <= 'Z'){   index = Str[i] - 'A';   temp[i] = MirroredStr[index];  }  else{   index = Str[i] - '1';   temp[i] = MirroredNum[index];  }  //0 和 O等价  if((temp[i] == '0' && Str[j] == 'O') || (temp[i] == 'O' && Str[j] == '0')){   continue;  }  if(temp[i] != Str[j]){   return 0;  } } return 1;}int main (){ char Str[21]; int i,len,IsP,IsM; //freopen("C:\\Users\\XIAOSI\\Desktop\\acm.txt","r",stdin);   while(scanf("%s",Str) != EOF){  len = strlen(Str);  printf("%s -- ",Str);  //回文字符串  IsP = IsPalindromes(Str);  //镜面字符串  IsM = IsMirrored(Str);  //输出  if(IsP == 0 && IsM == 0){   printf("is not a palindrome.\n");  }  else if(IsP == 1 && IsM == 1){   printf("is a mirrored palindrome.\n");  }  else if(IsP == 1 && IsM == 0){   printf("is a regular palindrome.\n");  }  else if(IsP == 0 && IsM == 1){   printf("is a mirrored string.\n");  }  printf("\n"); } return 0;} 

           

分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!

转载地址:http://cjddi.baihongyu.com/

你可能感兴趣的文章
带WiringPi库的交叉笔译如何处理二之软链接概念
查看>>
Spring事务的七种传播行为
查看>>
ES写入找不到主节点问题排查
查看>>
Java8 HashMap集合解析
查看>>
ArrayList集合解析
查看>>
欢迎使用CSDN-markdown编辑器
查看>>
Android计算器实现源码分析
查看>>
Android系统构架
查看>>
Android 跨应用程序访问窗口知识点总结
查看>>
各种排序算法的分析及java实现
查看>>
SSH框架总结(框架分析+环境搭建+实例源码下载)
查看>>
js弹窗插件
查看>>
自定义 select 下拉框 多选插件
查看>>
js判断数组内是否有重复值
查看>>
js获取url链接携带的参数值
查看>>
gdb 调试core dump
查看>>
gdb debug tips
查看>>
arm linux 生成火焰图
查看>>
linux和windows内存布局验证
查看>>
linux config
查看>>