摘要:
1.队列 https://blog.csdn.net/LiuBo_01/article/details/80412290 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef struct Node 5 { 6 int data; 7 stru 阅读全文
摘要:
1.单链表 https://blog.csdn.net/qq_36806987/article/details/79858957 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 /*结构体部分*/ 5 typedef struct Node 6 { 7 in 阅读全文

摘要:
1.二叉树先序、中序、后序三种遍历 https://blog.csdn.net/chinesekobe/article/details/110874773 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef struct node{ 5 in 阅读全文
