time limit: 1000ms memory limit: 65536k
輸入一串字元(長度小於100),判斷該串字元是否是回文串(正序讀與逆序讀內容相同)。
輸入一串字元(長度小於100)。
若該串字元是回文串輸出「yes",否則輸出」no「。
asdfgfdsa
yes
#include #include #include #define stackmax 10000
#define stacknum 10000
typedef int elemtype;
typedef struct
sqstack;
int initstack(sqstack &s)
char push(sqstack &s , char e)
*s.top++=e;
}int pop(sqstack &s)
int gettop(sqstack &s)
int stackempty(sqstack &s)
void putstack(sqstack &s)
}char judge(sqstack &s, char c)
{ int n=strlen(c), i;
for(i=0; i
判定回文串
time limit 1000ms memory limit 65536k 輸入一串字元 長度小於100 判斷該串字元是否是回文串 正序讀與逆序讀內容相同 輸入一串字元 長度小於100 若該串字元是回文串輸出 yes 否則輸出 no asdfgfdsa yes 使用遞迴的必需條件 可以通過遞迴呼叫來...
回文串判定
輸入一串字元 長度小於100 判斷該串字元是否是回文串 正序讀與逆序讀內容相同 輸入一串字元 長度小於100 若該串字元是回文串輸出 yes 否則輸出 no asdfgfdsa yes include include include include using namespace std const...
1524 回文串判定
problem description 輸入一串字元 長度小於100 判斷該串字元是否是回文串 正序讀與逆序讀內容相同 input 輸入一串字元 長度小於100 output 若該串字元是回文串輸出 yes 否則輸出 no example input asdfgfdsa example output...