
数据结构
文章平均质量分 96
C++初学者555
55
展开
-
数据结构-----单链表,栈与队
总结单链表,链栈和环形队列的创建和使用 1.单链表: typedef struct list { int m; struct list *next; //struct list *rihgt } mylist; class List { public: List() : plist(new mylist) { if (plist == nullptr) { ...原创 2019-05-20 15:27:19 · 228 阅读 · 0 评论 -
数据结构-----树
目录 1.树的术语 2.2叉树/树的创建 3.2叉树的遍历 4.2叉树的构造 5.哈夫曼树 6.bst树 7.avl树 8.红黑树与avl树 1.树的术语 Root根 顶端结点 The top node in a tree. Child子节点 一个结点所连接的结点 A node directly connected to another node when ...原创 2019-05-20 17:29:26 · 253 阅读 · 0 评论 -
数据结构-----图
https://blog.youkuaiyun.com/daijin888888/article/details/73177325原创 2019-05-24 21:00:52 · 114 阅读 · 0 评论