摘要:
Test 界面: 存钱: 取钱: 账户: 菜单: 登陆/ 注册: 参考于:https://blog.csdn.net/qq_37724011/article/details/78682028 阅读全文
该文被密码保护。 阅读全文
摘要:
# 链式存储#include #include #define STACK_INIT_SIZE 100//存储空间初始分配量 #define STACKINCREMENT 10//存储空间分配增量 #define TURE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef struct ... 阅读全文
摘要:
#include #include #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 //stackincrement #define OVERFLOW -2 #define OK 1 #define ERROR 0 typedef struct{ int *base; int *top; int stacksi... 阅读全文
摘要:
#include #include #define ERROR 0 #define OK 1 #define OVERFLOW -2 typedef struct Lnode{ int data; struct Lnode *next; }LNode,*LinkList; //初始化一个空指针 int InitList_L(LinkList &L){ L=(LNode... 阅读全文
摘要:
#define OK 1 #define ERROR 0 #define OVERFLOW -2 #define LIST_INIT_SIZE 100 // 线性表存储空间的初始分配量 #define List_Increment 10 //线性表存储空间的分配增量 #include #include #include typedef struct{ int *elem... 阅读全文