51CTO博客开发
#include<stdio.h> #include<stdlib.h> #include<string.h> #include<malloc.h> #define MaxSize 100 #define ElemType char typedef struct Stack { ElemType * top; ElemType * b
#include<stdio.h> #include<stdlib.h> #define STACK_SIZE 10 #define ElemType int typedef struct Stack { ElemType * top; ElemType * base; int stacksize; }stack; void InitStack(stack * s); vo
Copyright © 2005-2025 51CTO.COM 版权所有 京ICP证060544号