摘要: 单向链表的创建:有头节点和无头结点的插入创建方法; 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 阅读(36) 评论(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 阅读(192) 评论(0) 推荐(0)