posts - 137,comments - 0,views - 40595
02 2023 档案
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 阅读(49) 评论(0) 推荐(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 阅读(29) 评论(0) 推荐(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 阅读(51) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示