摘要: #include<stdio.h> #include<stdlib.h> #define Size 4 typedef struct node{ int a[Size],top; }sqstack; void init(sqstack & L){ int x; L.top=-1; if(L.top= 阅读全文