摘要:
#include<iostream> #include<malloc.h> using namespace std; typedef struct Sqlist { int *elem; int length; int listsize; }Sqlist; void InitList(Sqlist 阅读全文
摘要:
#define STACKSIZE 100 #include<iostream> #include<malloc.h> using namespace std; typedef struct Sqstack{ int *base; int *top; int stacksize; }Sqstack; 阅读全文