c語言:順序棧的應用(二) 判斷迴文數

#include<iostream> #include<stdio.h> #define STACK_INIT_SIZE 100 #define STACK_INCREMENT 10 using namespace std; typedef struct Stack  //結構體定義 {   int *elem;          //數據域 int top;    //順序棧棧頂 int sta
相關文章
相關標籤/搜索