1-1
分数 2
作者 DS课程组单位 浙江大学
The inorder traversal sequence of an AVL tree must be in sorted (non-decreasing) order.
AVL 树的无序遍历序列必须是有序(非递减)顺序。
T
F
分数 1
作者 陈越单位 浙江大学
For any node in an AVL tree, the height of the left subtree must be greater than that of the right subtree.
对于 AVL 树中的任何节点,左侧子树的高度必须大于右侧子树的高度。
T
F
分数 2
作者 徐镜春单位 浙江大学
An AVL tree with the balance factors of all the non-leaf nodes being 0 must be a perfect binary tree.
所有非叶节点的平衡因子为0的 AVL 树必须是完美的二叉树。
T
F
分数 2
作者 徐镜春单位 浙江大学
For an AVL tree, the balance factors of all the non-leaf nodes are 0 iff the tree is a complete binary tree.
对于 AVL 树,当树是完全二叉树时,所有非叶节点的平衡因子为0。
T
F
分数 2
作者 徐镜春单位 浙江大学
对一棵平衡二叉树,所有非叶结点的平衡因子都是0,当且仅当该树是完全二叉树。
T
F
分数 2
作者 何钦铭单位 浙江大学
If the depth of an AVL tree with nodes { 1, 2, 3, 4 } is 3 (the depth of the root is 1), then it is possible for node 4 to be the root.
如果节点{1,2,3,4}的 AVL 树的深度为3(根的深度为1) ,那么节点4可能是根。
T
F
分数 2
作者 陈越单位 浙江大学
In an AVL tree, it is impossible to have this situation that the balance factors of a node and both of its children are all +1.
在 AVL 树中,不可能出现一个节点及其两个子节点的平衡因子都为 + 1的情况。
T
F
分数 2
作者 陈越单位 浙江大学
In an AVL tree, it is possible to have this situation that the balance factors of a node and both of its children are all -1.
在 AVL 树中,不可能出现一个节点及其两个子节点的平衡因子都为 - 1的情况。
T
F
分数 1
作者 王东单位 贵州师范学院
平衡二叉树中,若某个结点的左、右孩子的平衡因子为零,则该结点的平衡因子一定为零。
T
F
分数 1
作者 王东单位 贵州师范学院
非空的平衡二叉树中插入一个结点,原有结点中至少一个结点的平衡因子会改变。
T
F
2-1
分数 1
作者 DS课程组单位 浙江大学
AVL树是一种平衡的二叉搜索树,树中任一结点具有下列哪一特性:
A.左、右子树的高度均相同
B.左、右子树高度差的绝对值不超过1
C.左子树的高度均大于右子树的高度
D.左子树的高度均小于右子树的高度
分数 1
作者 DS课程组单位 浙江大学
下列二叉搜索树中,满足平衡二叉树定义的是:
A.
B.
C.
D.
分数 2
作者 陈越单位 浙江大学
Insert 2, 1, 4, 5, 9, 3, 6, 7 into an initially empty AVL tree. Which one of the following statements is FALSE?
将2,1,4,5,9,3,6,7插入到一个初始的空 AVL 树中。下列哪一个陈述是错误的?
A.4 is the root(根)
B.3 and 7 are siblings(兄弟姐妹)
C.2 and 6 are siblings
D.9 is the parent of 7
分数 3
作者 陈越单位 浙江大学
如果AVL树的深度为5(空树的深度定义为0),则此树最少有多少个结点?
A.12
B.20
C.33
D.64
分数 2
作者 徐镜春单位 浙江大学
将 7, 8, 9, 2, 3, 5, 6, 4 顺序插入一棵初始为空的AVL树。下列句子中哪句是错的?
A.7 是根结点
B.2 和 5 是兄弟
C.有2个结点的平衡因子为-1
D.3 是 4 的父结点
分数 2
作者 何钦铭单位 浙江大学
For an AVL-tree of height 4, what is the minimum number of the tree nodes? (the height of one node tree is 0)
对于高度为4的 AVL 树,树节点的最小数目是多少?(一个节点树的高度为0)
A.11
B.12
C.14
D.15
分数 2
作者 何钦铭单位 浙江大学
During inserting { 42, 26, 8, 70, 102, 56, 2} into an initially empty AVL tree, which of the following statements is true?
在将{42,26,8,70,102,56,2}插入一个初始空的 AVL 树时,下列哪个语句为真?
A.The resulted AVL tree is also a completed binary tree;
得到的 AVL 树也是一个完整的二叉树;
B.There are 4 rotations: LL,RR,LR,LL
有4个旋转: LL,RR,LR,LL
C.There are 4 rotations: LL,RR,LL,RL
D.There are 3 rotations: LL,RR,RL
分数 2
作者 何钦铭单位 浙江大学
Which nodes are root 5’s children after splaying 5 to the given Splay tree?
在将5显示到给定的 Play 树之后,哪些节点是 root 5的子节点?
A.3 and 7
B.3 and 10
C.1 and 8
D.1 and 7
分数 2
作者 何钦铭单位 浙江大学
When inserting 1, 2, 3, 6, 5, and 4 one by one into an initially empty AVL tree,which kinds of rotations will be encountered?
当将1、2、3、6、5和4一个一个地插入一个初始的空 AVL 树时,会遇到哪些类型的旋转?
A.Two RR's and one RL
B.One RR, one RL, and one LR
C.One RR and two RL's
D.Two RR's and one LR
分数 2
作者 陈越单位 浙江大学
将 26, 13, 44, 51, 98, 37, 66, 73 顺序插入一棵初始为空的AVL树。下列句子中哪句是错的?
A.44 是根结点
B.37 和 73 是兄弟
C.26 和 66 是兄弟
D.26 是 13 的父结点
分数 2
作者 何钦铭单位 浙江大学
将一系列数字顺序一个个插入一棵初始为空的AVL树。下面哪个系列的第一次旋转是“右-左”双旋?
A.1,2,3,4,5,6
B.6,5,4,3,2,1
C.4,2,5,6,3,1
D.3,1,4,6,5,2
分数 2
作者 考研真题单位 浙江大学
Delete a node v from an AVL tree T1, we can obtain another AVL tree T2. Then insert v into T2, we can obtain another AVL tree T3. Which one(s) of the following statements about T1 and T3 is(are) true?
从一个 AVL 树 T1中删除一个节点 v,就可以得到另一个 AVL 树 T2。然后将 v 插入 T2,我们可以得到另一个 AVL 树 T3。下列关于 T1和 T3的陈述哪一个是正确的?
I、If v is a leaf node in T1, then T1 and T3 might be different.
如果 v 是 T1的叶节点,那么 T1和 T3可能是不同的。
II、If v is not a leaf node in T1, then T1 and T3 must be different.
III、If v is not a leaf node in T1, then T1 and T3 must be the same.
A.I only
B.II only
C.I and II only
D.I and III only
分数 2
作者 何钦铭单位 浙江大学
Insert 28, 23, 54, 61, 98, 37 into an initially empty AVL tree first. Then immediately insert one of the following keys. Which one will cause an RL rotation?
首先将28、23、54、61、98、37插入到一个初始的空 AVL 树中。然后立即插入下列按键之一。哪一个会引起 RL 旋转?
A.10
B.30
C.60
D.70
分数 2
作者 何钦铭单位 浙江大学
Insert 28, 23, 54, 61, 98, 37 into an initially empty AVL tree first. Then immediately insert one of the following keys. Which one will cause an RL rotation?
首先将28、23、54、61、98、37插入到一个初始的空 AVL 树中。然后立即插入下列按键之一。哪一个会引起 RL 旋转?
A.10
B.50
C.80
D.100
分数 3
作者 陈越单位 浙江大学
If there are 14 nodes in an AVL tree, then the maximum depth of the tree is ____. The depth of an empty tree is defined to be 0.
如果一个 AVL 树中有14个节点,那么该树的最大深度是 _ _ _ _。空树的深度定义为0。
A.3
B.4
C.5
D.6
分数 3
作者 陈越单位 浙江大学
If there are 28 nodes in an AVL tree, then the maximum depth of the tree is ____. The depth of an empty tree is defined to be -1.
如果一个 AVL 树中有28个节点,那么该树的最大深度是 _ _ _ _。空树的深度定义为-1。
A.3
B.4
C.5
D.6