摘要: Test 界面: 存钱: 取钱: 账户: 菜单: 登陆/ 注册: 参考于:https://blog.csdn.net/qq_37724011/article/details/78682028 阅读全文
posted @ 2018-11-16 20:16 yin_zhaozhao 阅读(730) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-11-16 20:06 yin_zhaozhao 阅读(1) 评论(0) 推荐(0) 编辑
摘要: # 链式存储#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 ... 阅读全文
posted @ 2018-11-16 20:02 yin_zhaozhao 阅读(249) 评论(0) 推荐(0) 编辑
摘要: #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... 阅读全文
posted @ 2018-11-16 19:56 yin_zhaozhao 阅读(216) 评论(0) 推荐(0) 编辑
摘要: #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... 阅读全文
posted @ 2018-11-16 19:55 yin_zhaozhao 阅读(149) 评论(0) 推荐(0) 编辑
摘要: #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... 阅读全文
posted @ 2018-11-16 19:52 yin_zhaozhao 阅读(224) 评论(0) 推荐(0) 编辑