标签:sim inf load src 重要 目的 识别 时间 目标
AVL树的右旋
AVL树的右左旋
问题1:.红黑树从任一节点到其每个叶子的所有路径都包含相同数目的黑色节点这句话怎么理解?中间的情况是否与这句话有出入?
问题1解决方案:这有个条件:确保没有一条路径会比其他路径长出俩倍
问题2解决方案:在红黑树的删除算法中,有这么一种情况
这种情况下,S的左孩子与右孩子必为NIL,否则原来的红黑树就不平衡.
那么在对P的向上递归过程中,也会出现这种情况,即对应的S及S的孩子全为黑色.
NIL结点的意义就在于:向上递归的过程中识别出这种情况
无
There are four basic methods for traversing a tree: preorder, inorder, postorder, and level-order.
B . Top down, inorder, postorder, and level-order
C . Bottom up, preorder, in order, and postorder
D . preorder, inorder, postorder, and level-order
选D,看错
The simulated link strategy does not allow array positions to be allocated contiguously regardless of the completeness of the tree.
A . True
B . False
选B,模拟链接策略允许连续分配数组位置而不用考虑该树的完全性。
In general, a balanced n-ary tree with m elements will have height lognm.
A . True
B . False
选A,具有m个元素的平衡n元树的高度为lognm
代码行数(新增/累积) | 博客量(新增/累积) | 学习时间(新增/累积) | 重要成长 | |
---|---|---|---|---|
目标 | 5000行 | 30篇 | 400小时 | |
第一周 | 0/0 | 1/1 | 8/8 | |
第二周 | 500/500 | 1/2 | 15/ 23 | |
第三周 | 802/1302 | 1/3 | 12/35 | |
第四周 | 1530/2832 | 2/5 | 15/50 | |
第五周 | 1165/3997 | 1/6 | 10/60 | |
第六周 | 1169/5166 | 1/7 | 15/75 | |
第七周 | 843/6039 | 1/8 | 15/90 |
20172318 2018-2019-1 《程序设计与数据结构》第7周学习总结
标签:sim inf load src 重要 目的 识别 时间 目标
原文地址:https://www.cnblogs.com/m1sty/p/9894929.html