07 2021 档案
摘要:#include <iostream> #include<cstdio> using namespace std; typedef struct LinkNode {//队列链式结构 int Data; struct LinkNode* next; }LinkNode; typedef struct
阅读全文
摘要:#include<cstdio> #include <iostream> #define Maxsize 50 using namespace std; typedef struct { int Data[Maxsize]; int top; }Sqstack; void Initstack(Sqs
阅读全文
摘要:#include<cstdio> #include <iostream> using namespace std; typedef struct DNode { int data; struct DNode* next, * prior; }DNode,*DLinklist; /*********双
阅读全文
摘要:单向链表的创建:有头节点和无头结点的插入创建方法; 1 #include<cstdio> 2 #include <iostream> 3 using namespace std; 4 typedef struct LNode { 5 int data; 6 struct LNode* next; 7
阅读全文
摘要:有关数据结构的学习笔记,懒得整理了,直接挂上了。。。 1 #include<cstdio> 2 #include<cstdlib> 3 #include<iostream> 4 #define InitSize 10 5 using namespace std; 6 typedef struct {
阅读全文