回文判断程序txt

hulin0576 45 0 TXT 2019-03-13 01:03:04

#define TRUN 1 #define FALSE 0 #define Stack_Size 50 #include typedef struct {char elem[Stack_Size]; int top; }SeqStack; int Isempty(SeqStack *S) {return(S->top==-1? TRUN:FALSE); }~~~~~~~~~~

用户评论
请输入评论内容
评分:
暂无评论