C語言利用棧判斷字符串是否爲迴文

#include<stdio.h> #include<string.h> #define OK 1 #define ERROR 0 typedef char ElemType; typedef int Status; typedef struct Stack1 { ElemType data; struct Stack1 *next; }Stack1,*SqlStack1; //初始化一個棧
相關文章
相關標籤/搜索