C/C++ 数据结构顺序栈的基本操作实现
摘要:#include <iostream> #include <Windows.h> using namespace std; #define MAXSIZE 6 //顺序栈的实现 typedef struct { int* base; int* top; int stacksize; int Leng
阅读全文
posted @
2023-02-14 15:19
wshidaboss
阅读(43)
推荐(0) 编辑
C/C++ 数据结构链式队列的定义与实现
摘要:#include <iostream> #include <Windows.h> using namespace std; typedef struct _QNode{ int data; struct _QNode* next; }QNode; typedef struct { QNode* fr
阅读全文
posted @
2023-02-08 19:17
wshidaboss
阅读(26)
推荐(0) 编辑
C/C++ 数据结构循环队列的实现
摘要:#include <iostream> #include <Windows.h> using namespace std; #define MAXSIZE 6 typedef int QElemType; typedef struct { QElemType* base;//基地址 int rear
阅读全文
posted @
2023-02-03 23:19
wshidaboss
阅读(47)
推荐(0) 编辑