code1Life

导航

 

数据结构C++ 实现篇:

顺序表(线性表): https://blog.csdn.net/weixin_35909255/article/details/54589354

单链表:https://blog.csdn.net/weixin_35909255/article/details/54634144

单向循环链表:https://blog.csdn.net/weixin_35909255/article/details/54634299

双向循环链表:https://blog.csdn.net/weixin_35909255/article/details/54634379

队列:https://blog.csdn.net/weixin_35909255/article/details/54668882

二叉树:https://blog.csdn.net/weixin_35909255/article/details/54765645

二叉树前中后线索化:https://blog.csdn.net/weixin_35909255/article/details/54799611

排序二叉树(二叉搜索树):https://blog.csdn.net/weixin_35909255/article/details/55001177

分别根据前中序遍历和后中序遍历来推二叉树的结构:https://blog.csdn.net/weixin_35909255/article/details/55071068

最小堆:https://blog.csdn.net/weixin_35909255/article/details/55803039

图(邻接图):https://blog.csdn.net/weixin_35909255/article/details/55803363

图(邻接表):https://blog.csdn.net/weixin_35909255/article/details/55804884

红黑树-初步剖析:https://blog.csdn.net/weixin_35909255/article/details/76692834

 

数据结构应用篇:

利用链表打印多项式以及其‘+’运算:https://blog.csdn.net/weixin_35909255/article/details/54669077

顺序栈的简单实现以及利用栈实现求解一位数的复合运算:https://blog.csdn.net/weixin_35909255/article/details/54669239

栈实现表达式的计算:https://blog.csdn.net/weixin_35909255/article/details/55001370

一元多项式的加减乘数实现:https://blog.csdn.net/weixin_35909255/article/details/54957535

图(邻接表)的遍历——DFS(深度优先搜索)和BFS(广度优先搜索)和连通图:https://blog.csdn.net/weixin_35909255/article/details/57086511

图(有向图)的应用——拓扑排序:https://blog.csdn.net/weixin_35909255/article/details/57088256

用两个栈实现队列:https://blog.csdn.net/weixin_35909255/article/details/70161735

 

posted on 2019-04-07 12:29  code1Life  阅读(172)  评论(0)    收藏  举报