- 相關推薦
揚智(科技)軟件筆試題目第10題答案
第10題為:
10.Write a recursive function that tests wether a string is a palindrome.
A palindrome is s string such as "abcba" or "otto" that reads the same in
both directions.If you can write this function recursively,you can write
an iterative version of this function instead.
#include
#include
int count=0;//記錄遞歸函數中字符串縮短的總次數,可以不要這個,
揚智(科技)軟件筆試題目第10題答案
。recp(char s[])//回文的遞歸函數
{
int i;
if(strlen(s)==1)//長度為1
return 1;
else if(strlen(s)==2)長度為2的情況
{
if(s[0]==s[1])
return 1;
else
return 0;
}
else if(s[0]==s[strlen(s)-1])
{
count++;
cout<<"The "< char t[]="abcdeabcd";
int svalue,tvalue;
svalue=recp(s);
tvalue=recp(t);
cout<<"the value of string s is:"< cout<<"the value of string t is:"<}
在Visual C++6.0中通過,
資料共享平臺
《揚智(科技)軟件筆試題目第10題答案》(http://m.msguai.com)。
【揚智科技軟件筆試題目第10題答案】相關文章:
英智興達軟件測試筆試題目10-21
手機軟件測試筆試題目及答案解析07-28
趨勢科技的筆試題目07-21
net筆試題目答案06-30
雅思筆試題目答案09-03
軟件測試常見筆試題目10-21
Intel筆試真題技術筆試題目09-10
潤信科技筆試題目06-08
藍盟科技筆試題目07-20
最新PHP筆試題目及答案05-25