关闭页面特效

07 2021 档案

摘要:#include <iostream> #include<cstdio> using namespace std; typedef struct LinkNode {//队列链式结构 int Data; struct LinkNode* next; }LinkNode; typedef struct 阅读全文
posted @ 2021-07-30 19:43 Mexcellent 阅读(20) 评论(0) 推荐(0) 编辑
摘要:#include<cstdio> #include <iostream> #define Maxsize 50 using namespace std; typedef struct { int Data[Maxsize]; int top; }Sqstack; void Initstack(Sqs 阅读全文
posted @ 2021-07-30 09:35 Mexcellent 阅读(21) 评论(0) 推荐(0) 编辑
摘要:#include<cstdio> #include <iostream> using namespace std; typedef struct DNode { int data; struct DNode* next, * prior; }DNode,*DLinklist; /*********双 阅读全文
posted @ 2021-07-30 09:34 Mexcellent 阅读(25) 评论(0) 推荐(0) 编辑
摘要:单向链表的创建:有头节点和无头结点的插入创建方法; 1 #include<cstdio> 2 #include <iostream> 3 using namespace std; 4 typedef struct LNode { 5 int data; 6 struct LNode* next; 7 阅读全文
posted @ 2021-07-11 22:28 Mexcellent 阅读(32) 评论(0) 推荐(0) 编辑
摘要:有关数据结构的学习笔记,懒得整理了,直接挂上了。。。 1 #include<cstdio> 2 #include<cstdlib> 3 #include<iostream> 4 #define InitSize 10 5 using namespace std; 6 typedef struct { 阅读全文
posted @ 2021-07-11 22:26 Mexcellent 阅读(177) 评论(0) 推荐(0) 编辑

关注
跳至底部
点击右上角即可分享
微信分享提示