换一个方式解决这种复杂的逻辑问题
This commit is contained in:
parent
15d2f6acd3
commit
e3434214f8
|
@ -170,6 +170,7 @@ func (tree *vbTree) removeNode(n *tNode) {
|
||||||
if ls == 0 && rs == 0 {
|
if ls == 0 && rs == 0 {
|
||||||
p := n.parent
|
p := n.parent
|
||||||
p.children[getRelationship(n)] = nil
|
p.children[getRelationship(n)] = nil
|
||||||
|
// p.size -= n.size
|
||||||
tree.fixSizeWithRemove(p)
|
tree.fixSizeWithRemove(p)
|
||||||
// return n
|
// return n
|
||||||
return
|
return
|
||||||
|
@ -196,17 +197,18 @@ func (tree *vbTree) removeNode(n *tNode) {
|
||||||
|
|
||||||
cright := cur.children[1]
|
cright := cur.children[1]
|
||||||
cur.parent.children[getRelationship(cur)] = cright
|
cur.parent.children[getRelationship(cur)] = cright
|
||||||
|
|
||||||
if cright != nil {
|
if cright != nil {
|
||||||
cright.parent = cur.parent
|
cright.parent = cur.parent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cparent := cur.parent
|
cparent := cur.parent
|
||||||
replaceNodeMayRoot(n, cur)
|
if cparent == n {
|
||||||
|
cparent = cur
|
||||||
|
}
|
||||||
|
tree.replaceNodeMayRoot(n, cur)
|
||||||
// 修改为interface 交换
|
// 修改为interface 交换
|
||||||
// n.value, cur.value = cur.value, n.value
|
// n.value, cur.value = cur.value, n.value
|
||||||
|
|
||||||
tree.fixSizeWithRemove(cparent)
|
tree.fixSizeWithRemove(cparent)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -964,16 +966,11 @@ func replaceNodeNotRoot(oldn, newn *tNode) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func replaceNodeMayRoot(oldn, newn *tNode) {
|
func (tree *vbTree) replaceNodeMayRoot(oldn, newn *tNode) {
|
||||||
if newn.parent == oldn {
|
|
||||||
if oldn.children[0] == newn {
|
|
||||||
oldn.children[0] = nil
|
|
||||||
} else {
|
|
||||||
oldn.children[1] = nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
newn.children[0] = oldn.children[0]
|
newn.children[0] = oldn.children[0]
|
||||||
newn.children[1] = oldn.children[1]
|
newn.children[1] = oldn.children[1]
|
||||||
|
newn.size = oldn.size
|
||||||
newn.parent = oldn.parent
|
newn.parent = oldn.parent
|
||||||
if oldn.parent != nil {
|
if oldn.parent != nil {
|
||||||
if oldn.parent.children[0] == oldn {
|
if oldn.parent.children[0] == oldn {
|
||||||
|
@ -981,10 +978,12 @@ func replaceNodeMayRoot(oldn, newn *tNode) {
|
||||||
} else {
|
} else {
|
||||||
oldn.parent.children[1] = newn
|
oldn.parent.children[1] = newn
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
tree.root = newn
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func tailReplaceNode(oldn, newn *tNode) {
|
func (tree *vbTree) tailReplaceNode(oldn, newn *tNode) {
|
||||||
newn.children[0] = oldn.children[0]
|
newn.children[0] = oldn.children[0]
|
||||||
newn.children[1] = oldn.children[1]
|
newn.children[1] = oldn.children[1]
|
||||||
newn.parent = oldn.parent
|
newn.parent = oldn.parent
|
||||||
|
@ -994,6 +993,8 @@ func tailReplaceNode(oldn, newn *tNode) {
|
||||||
} else {
|
} else {
|
||||||
oldn.parent.children[1] = newn
|
oldn.parent.children[1] = newn
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
tree.root = newn
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1052,7 +1053,7 @@ func outputfordebug(node *tNode, prefix string, isTail bool, str *string) {
|
||||||
if node.parent == nil {
|
if node.parent == nil {
|
||||||
parentv = "nil"
|
parentv = "nil"
|
||||||
} else {
|
} else {
|
||||||
parentv = spew.Sprint(node.value)
|
parentv = spew.Sprint(node.parent.value)
|
||||||
}
|
}
|
||||||
suffix += parentv + "|" + spew.Sprint(node.size) + ")"
|
suffix += parentv + "|" + spew.Sprint(node.size) + ")"
|
||||||
*str += spew.Sprint(node.value) + suffix + "\n"
|
*str += spew.Sprint(node.value) + suffix + "\n"
|
||||||
|
|
|
@ -335,8 +335,8 @@ ALL:
|
||||||
var l []int
|
var l []int
|
||||||
m := make(map[int]int)
|
m := make(map[int]int)
|
||||||
|
|
||||||
for i := 0; len(l) < 20; i++ {
|
for i := 0; len(l) < 10; i++ {
|
||||||
v := randomdata.Number(0, 100000)
|
v := randomdata.Number(0, 100)
|
||||||
if _, ok := m[v]; !ok {
|
if _, ok := m[v]; !ok {
|
||||||
m[v] = v
|
m[v] = v
|
||||||
l = append(l, v)
|
l = append(l, v)
|
||||||
|
@ -345,18 +345,23 @@ ALL:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for i := 0; i < 20; i++ {
|
for i := 0; i < 10; i++ {
|
||||||
|
beforce := tree.debugString()
|
||||||
tree.Remove(l[i])
|
tree.Remove(l[i])
|
||||||
|
after := tree.debugString()
|
||||||
gods.Remove(l[i])
|
gods.Remove(l[i])
|
||||||
|
|
||||||
|
t.Error(beforce)
|
||||||
|
t.Error(after, l[i])
|
||||||
s1 := spew.Sprint(tree.Values())
|
s1 := spew.Sprint(tree.Values())
|
||||||
s2 := spew.Sprint(gods.Values())
|
s2 := spew.Sprint(gods.Values())
|
||||||
if s1 != s2 {
|
if s1 != s2 {
|
||||||
t.Error("avl remove error", "avlsize = ", tree.Size())
|
// t.Error("avl remove error", "avlsize = ", tree.Size())
|
||||||
t.Error(tree.root, i, l[i])
|
// t.Error(beforce)
|
||||||
t.Error(s1)
|
// t.Error(after)
|
||||||
t.Error(s2)
|
// t.Error(tree.root, i, l[i])
|
||||||
|
// t.Error(s1)
|
||||||
|
// t.Error(s2)
|
||||||
break ALL
|
break ALL
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -955,7 +955,7 @@ func outputfordebug(node *Node, prefix string, isTail bool, str *string) {
|
||||||
if node.parent == nil {
|
if node.parent == nil {
|
||||||
parentv = "nil"
|
parentv = "nil"
|
||||||
} else {
|
} else {
|
||||||
parentv = spew.Sprint(node.value)
|
parentv = spew.Sprint(node.parent.value)
|
||||||
}
|
}
|
||||||
suffix += parentv + "|" + spew.Sprint(node.size) + ")"
|
suffix += parentv + "|" + spew.Sprint(node.size) + ")"
|
||||||
*str += spew.Sprint(node.value) + suffix + "\n"
|
*str += spew.Sprint(node.value) + suffix + "\n"
|
||||||
|
|
|
@ -956,7 +956,7 @@ func outputfordebug(node *Node, prefix string, isTail bool, str *string) {
|
||||||
if node.parent == nil {
|
if node.parent == nil {
|
||||||
parentv = "nil"
|
parentv = "nil"
|
||||||
} else {
|
} else {
|
||||||
parentv = spew.Sprint(node.key) + ":" + spew.Sprint(node.value)
|
parentv = spew.Sprint(node.key) + ":" + spew.Sprint(node.parent.value)
|
||||||
}
|
}
|
||||||
suffix += parentv + "|" + spew.Sprint(node.size) + ")"
|
suffix += parentv + "|" + spew.Sprint(node.size) + ")"
|
||||||
*str += spew.Sprint(node.key) + ":" + spew.Sprint(node.value) + suffix + "\n"
|
*str += spew.Sprint(node.key) + ":" + spew.Sprint(node.value) + suffix + "\n"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user