C語言靜態順序棧實現進制轉換

#include <stdio.h> #include <stdlib.h> #include <malloc.h> #define MAX_STACK_SIZE 100 //棧的大小 #define ERROR -1 #define OK 1 typedef struct sqstack {     int stack_array[MAX_STACK_SIZE];     int top;  
相關文章
相關標籤/搜索