package pqueue import ( "474420502.top/eson/structure/compare" "github.com/davecgh/go-spew/spew" ) type tNode struct { children [2]*tNode parent *tNode size int value interface{} } func (n *tNode) String() string { if n == nil { return "nil" } p := "nil" if n.parent != nil { p = spew.Sprint(n.parent.value) } return spew.Sprint(n.value) + "(" + p + "|" + spew.Sprint(n.size) + ")" } type vbTree struct { root *tNode Compare compare.Compare top *tNode iter *vbtIterator } func newVBT(Compare compare.Compare) *vbTree { return &vbTree{Compare: Compare, iter: NewIteratorWithCap(nil, 16)} } func (tree *vbTree) String() string { str := "AVLTree\n" if tree.root == nil { return str + "nil" } output(tree.root, "", true, &str) return str } func (tree *vbTree) vbtIterator() *vbtIterator { return initIterator(tree) } func (tree *vbTree) Size() int { if tree.root == nil { return 0 } return tree.root.size } func (tree *vbTree) indexNode(idx int) *tNode { cur := tree.root if idx >= 0 { for cur != nil { ls := getSize(cur.children[0]) if idx == ls { return cur } else if idx < ls { cur = cur.children[0] } else { idx = idx - ls - 1 cur = cur.children[1] } } } else { idx = -idx - 1 for cur != nil { rs := getSize(cur.children[1]) if idx == rs { return cur } else if idx < rs { cur = cur.children[1] } else { idx = idx - rs - 1 cur = cur.children[0] } } } return nil } func (tree *vbTree) Index(idx int) (interface{}, bool) { n := tree.indexNode(idx) if n != nil { return n.value, true } return nil, false } func (tree *vbTree) IndexRange(idx1, idx2 int) (result []interface{}, ok bool) { // 0 -1 if idx1^idx2 < 0 { if idx1 < 0 { idx1 = tree.root.size + idx1 - 1 } else { idx2 = tree.root.size + idx2 - 1 } } if idx1 > idx2 { ok = true if idx1 >= tree.root.size { idx1 = tree.root.size - 1 ok = false } n := tree.indexNode(idx1) iter := NewIterator(n) result = make([]interface{}, 0, idx1-idx2) for i := idx2; i <= idx1; i++ { if iter.Prev() { result = append(result, iter.Value()) } else { ok = false return } } return } else { ok = true if idx2 >= tree.root.size { idx2 = tree.root.size - 1 ok = false } if n := tree.indexNode(idx1); n != nil { iter := NewIterator(n) result = make([]interface{}, 0, idx2-idx1) for i := idx1; i <= idx2; i++ { if iter.Next() { result = append(result, iter.Value()) } else { ok = false return } } return } } return nil, false } func (tree *vbTree) RemoveIndex(idx int) bool { n := tree.indexNode(idx) if n != nil { tree.removeNode(n) return true } return false } func (tree *vbTree) removeNode(n *tNode) { if tree.root.size == 1 { tree.root = nil // return n return } ls, rs := getChildrenSize(n) if ls == 0 && rs == 0 { p := n.parent p.children[getRelationship(n)] = nil tree.fixSizeWithRemove(p) // return n return } var cur *tNode if ls > rs { cur = n.children[0] for cur.children[1] != nil { cur = cur.children[1] } cleft := cur.children[0] cur.parent.children[getRelationship(cur)] = cleft if cleft != nil { cleft.parent = cur.parent } } else { cur = n.children[1] for cur.children[0] != nil { cur = cur.children[0] } cright := cur.children[1] cur.parent.children[getRelationship(cur)] = cright if cright != nil { cright.parent = cur.parent } } cparent := cur.parent // 修改为interface 交换 n.value, cur.value = cur.value, n.value // 考虑到刚好替换的节点是 被替换节点的孩子节点的时候, 从自身修复高度 if cparent == n { tree.fixSizeWithRemove(n) } else { tree.fixSizeWithRemove(cparent) } // return cur return } func (tree *vbTree) Remove(key interface{}) bool { if n, ok := tree.GetNode(key); ok { tree.removeNode(n) return true } // return nil return false } // Values 返回先序遍历的值 func (tree *vbTree) Values() []interface{} { mszie := 0 if tree.root != nil { mszie = tree.root.size } result := make([]interface{}, 0, mszie) tree.Traversal(func(v interface{}) bool { result = append(result, v) return true }, LDR) return result } func (tree *vbTree) GetRange(k1, k2 interface{}) (result []interface{}) { c := tree.Compare(k2, k1) switch c { case 1: var min, max *tNode resultmin := tree.getArountNode(k1) resultmax := tree.getArountNode(k2) for i := 1; i < 3 && min == nil; i++ { min = resultmin[i] } for i := 1; i > -1 && max == nil; i-- { max = resultmax[i] } if max == nil { return []interface{}{} } result = make([]interface{}, 0, 16) // iter := NewIterator(min) tree.iter.SetNode(min) iter := tree.iter for iter.Next() { result = append(result, iter.Value()) if iter.cur == max { break } } case -1: var min, max *tNode resultmin := tree.getArountNode(k2) resultmax := tree.getArountNode(k1) for i := 1; i < 3 && min == nil; i++ { min = resultmin[i] } for i := 1; i > -1 && max == nil; i-- { max = resultmax[i] } if min == nil { return []interface{}{} } result = make([]interface{}, 0, 16) // iter := NewIterator(max) tree.iter.SetNode(max) iter := tree.iter for iter.Prev() { result = append(result, iter.Value()) if iter.cur == min { break } } case 0: if n, ok := tree.GetNode(k1); ok { return []interface{}{n.value} } return []interface{}{} } return } func (tree *vbTree) Get(key interface{}) (interface{}, bool) { n, ok := tree.GetNode(key) if ok { return n.value, true } return n, false } func (tree *vbTree) GetAround(key interface{}) (result [3]interface{}) { an := tree.getArountNode(key) for i, n := range an { if n != nil { result[i] = n.value } } return } func (tree *vbTree) getArountNode(key interface{}) (result [3]*tNode) { var last *tNode var lastc int for n := tree.root; n != nil; { last = n c := tree.Compare(key, n.value) switch c { case -1: n = n.children[0] lastc = c case 1: n = n.children[1] lastc = c case 0: // iter := NewIterator(n) tree.iter.SetNode(n) iter := tree.iter iter.Prev() for iter.Prev() { if tree.Compare(iter.cur.value, n.value) == 0 { n = iter.cur } else { break } } result[1] = n n = nil default: panic("Get Compare only is allowed in -1, 0, 1") } } switch lastc { case 1: if result[1] != nil { result[0] = tree.iter.GetPrev(result[1], 1) result[2] = tree.iter.GetNext(result[1], 1) } else { result[0] = last result[2] = tree.iter.GetNext(last, 1) } case -1: if result[1] != nil { result[0] = tree.iter.GetPrev(result[1], 1) result[2] = tree.iter.GetNext(result[1], 1) } else { result[2] = last result[0] = tree.iter.GetPrev(last, 1) } case 0: if result[1] == nil { return } result[0] = tree.iter.GetPrev(result[1], 1) result[2] = tree.iter.GetNext(result[1], 1) } return } func (tree *vbTree) GetNode(value interface{}) (*tNode, bool) { for n := tree.root; n != nil; { switch c := tree.Compare(value, n.value); c { case -1: n = n.children[0] case 1: n = n.children[1] case 0: // iter := NewIterator(n) tree.iter.SetNode(n) iter := tree.iter iter.Prev() for iter.Prev() { if tree.Compare(iter.cur.value, n.value) == 0 { n = iter.cur } else { break } } return n, true default: panic("Get Compare only is allowed in -1, 0, 1") } } return nil, false } func (tree *vbTree) Put(key interface{}) { tNode := &tNode{value: key, size: 1} if tree.root == nil { tree.root = tNode return } for cur := tree.root; ; { if cur.size > 8 { factor := cur.size / 10 // or factor = 1 if cur.children[1].size >= cur.children[0].size*2+factor || cur.children[0].size >= cur.children[1].size*2+factor { tree.fixSize(cur) } } cur.size++ c := tree.Compare(key, cur.value) if c < 0 { if cur.children[0] == nil { cur.children[0] = tNode tNode.parent = cur if cur.parent != nil && cur.parent.size == 3 { if cur.parent.children[0] == nil { tree.lrrotate3(cur.parent) } else { tree.rrotate3(cur.parent) } } return } cur = cur.children[0] } else { if cur.children[1] == nil { cur.children[1] = tNode tNode.parent = cur if cur.parent != nil && cur.parent.size == 3 { if cur.parent.children[1] == nil { tree.rlrotate3(cur.parent) } else { tree.lrotate3(cur.parent) } } return } cur = cur.children[1] } } } type TraversalMethod int const ( // L = left R = right D = Value(dest) _ TraversalMethod = iota //DLR 先值 然后左递归 右递归 下面同理 DLR //LDR 先从左边有序访问到右边 从小到大 LDR // LRD 同理 LRD // DRL 同理 DRL // RDL 先从右边有序访问到左边 从大到小 RDL // RLD 同理 RLD ) // Traversal 遍历的方法 默认是LDR 从小到大 Compare 为 l < r func (tree *vbTree) Traversal(every func(v interface{}) bool, traversalMethod ...interface{}) { if tree.root == nil { return } method := LDR if len(traversalMethod) != 0 { method = traversalMethod[0].(TraversalMethod) } switch method { case DLR: var traverasl func(cur *tNode) bool traverasl = func(cur *tNode) bool { if cur == nil { return true } if !every(cur.value) { return false } if !traverasl(cur.children[0]) { return false } if !traverasl(cur.children[1]) { return false } return true } traverasl(tree.root) case LDR: var traverasl func(cur *tNode) bool traverasl = func(cur *tNode) bool { if cur == nil { return true } if !traverasl(cur.children[0]) { return false } if !every(cur.value) { return false } if !traverasl(cur.children[1]) { return false } return true } traverasl(tree.root) case LRD: var traverasl func(cur *tNode) bool traverasl = func(cur *tNode) bool { if cur == nil { return true } if !traverasl(cur.children[0]) { return false } if !traverasl(cur.children[1]) { return false } if !every(cur.value) { return false } return true } traverasl(tree.root) case DRL: var traverasl func(cur *tNode) bool traverasl = func(cur *tNode) bool { if cur == nil { return true } if !every(cur.value) { return false } if !traverasl(cur.children[0]) { return false } if !traverasl(cur.children[1]) { return false } return true } traverasl(tree.root) case RDL: var traverasl func(cur *tNode) bool traverasl = func(cur *tNode) bool { if cur == nil { return true } if !traverasl(cur.children[1]) { return false } if !every(cur.value) { return false } if !traverasl(cur.children[0]) { return false } return true } traverasl(tree.root) case RLD: var traverasl func(cur *tNode) bool traverasl = func(cur *tNode) bool { if cur == nil { return true } if !traverasl(cur.children[1]) { return false } if !traverasl(cur.children[0]) { return false } if !every(cur.value) { return false } return true } traverasl(tree.root) } } func (tree *vbTree) lrrotate3(cur *tNode) *tNode { const l = 1 const r = 0 ln := cur.children[l] lrn := ln.children[r] ln.children[r] = nil if cur.parent == nil { tree.root = lrn } else { if cur.parent.children[1] == cur { cur.parent.children[1] = lrn } else { cur.parent.children[0] = lrn } } lrn.parent = cur.parent lrn.children[l] = cur.children[l] lrn.children[l].parent = lrn lrn.children[r] = cur lrn.children[r].parent = lrn cur.children[l] = nil lrn.size = 3 lrn.children[l].size = 1 lrn.children[r].size = 1 return lrn } func (tree *vbTree) lrrotate(cur *tNode) { const l = 1 const r = 0 movparent := cur.children[l] mov := movparent.children[r] mov.value, cur.value = cur.value, mov.value //交换值达到, 相对位移 if mov.children[l] != nil { movparent.children[r] = mov.children[l] movparent.children[r].parent = movparent //movparent.children[r].child = l } else { movparent.children[r] = nil } if mov.children[r] != nil { mov.children[l] = mov.children[r] //mov.children[l].child = l } else { mov.children[l] = nil } if cur.children[r] != nil { mov.children[r] = cur.children[r] mov.children[r].parent = mov } else { mov.children[r] = nil } cur.children[r] = mov mov.parent = cur movparent.size = getChildrenSumSize(movparent) + 1 mov.size = getChildrenSumSize(mov) + 1 cur.size = getChildrenSumSize(cur) + 1 } func (tree *vbTree) rlrotate3(cur *tNode) *tNode { const l = 0 const r = 1 ln := cur.children[l] lrn := ln.children[r] ln.children[r] = nil if cur.parent == nil { tree.root = lrn } else { if cur.parent.children[1] == cur { cur.parent.children[1] = lrn } else { cur.parent.children[0] = lrn } } lrn.parent = cur.parent lrn.children[l] = cur.children[l] lrn.children[l].parent = lrn lrn.children[r] = cur lrn.children[r].parent = lrn cur.children[l] = nil lrn.size = 3 lrn.children[l].size = 1 lrn.children[r].size = 1 return lrn } func (tree *vbTree) rlrotate(cur *tNode) { const l = 0 const r = 1 movparent := cur.children[l] mov := movparent.children[r] mov.value, cur.value = cur.value, mov.value //交换值达到, 相对位移 if mov.children[l] != nil { movparent.children[r] = mov.children[l] movparent.children[r].parent = movparent } else { movparent.children[r] = nil } if mov.children[r] != nil { mov.children[l] = mov.children[r] } else { mov.children[l] = nil } if cur.children[r] != nil { mov.children[r] = cur.children[r] mov.children[r].parent = mov } else { mov.children[r] = nil } cur.children[r] = mov mov.parent = cur movparent.size = getChildrenSumSize(movparent) + 1 mov.size = getChildrenSumSize(mov) + 1 cur.size = getChildrenSumSize(cur) + 1 } func (tree *vbTree) replaceNotRoot(old, new *tNode) { new.children[0] = old.children[0] new.children[1] = old.children[1] if old.parent.children[1] == old { old.parent.children[1] = new } else { old.parent.children[0] = new } } func (tree *vbTree) replace(old, new *tNode) { new.children[0] = old.children[0] new.children[1] = old.children[1] if old.parent == nil { tree.root = new } else { if old.parent.children[1] == old { old.parent.children[1] = new } else { old.parent.children[0] = new } } } func (tree *vbTree) rrotate3(cur *tNode) *tNode { const l = 0 const r = 1 // 1 right 0 left mov := cur.children[l] if cur.parent == nil { tree.root = mov } else { if cur.parent.children[1] == cur { cur.parent.children[1] = mov } else { cur.parent.children[0] = mov } } mov.parent = cur.parent mov.children[r] = cur mov.children[r].parent = mov cur.children[l] = nil mov.size = 3 cur.size = 1 return mov } func (tree *vbTree) rrotate(cur *tNode) { const l = 0 const r = 1 // 1 right 0 left mov := cur.children[l] mov.value, cur.value = cur.value, mov.value //交换值达到, 相对位移 // mov.children[l]不可能为nil mov.children[l].parent = cur cur.children[l] = mov.children[l] // 解决mov节点孩子转移的问题 if mov.children[r] != nil { mov.children[l] = mov.children[r] } else { mov.children[l] = nil } if cur.children[r] != nil { mov.children[r] = cur.children[r] mov.children[r].parent = mov } else { mov.children[r] = nil } // 连接转移后的节点 由于mov只是与cur交换值,parent不变 cur.children[r] = mov mov.size = getChildrenSumSize(mov) + 1 cur.size = getChildrenSumSize(cur) + 1 } func (tree *vbTree) lrotate3(cur *tNode) *tNode { const l = 1 const r = 0 // 1 right 0 left mov := cur.children[l] if cur.parent == nil { tree.root = mov } else { if cur.parent.children[1] == cur { cur.parent.children[1] = mov } else { cur.parent.children[0] = mov } } mov.parent = cur.parent mov.children[r] = cur mov.children[r].parent = mov cur.children[l] = nil mov.size = 3 cur.size = 1 return mov } func (tree *vbTree) lrotate(cur *tNode) { const l = 1 const r = 0 // 1 right 0 left mov := cur.children[l] mov.value, cur.value = cur.value, mov.value //交换值达到, 相对位移 // mov.children[l]不可能为nil mov.children[l].parent = cur cur.children[l] = mov.children[l] // 解决mov节点孩子转移的问题 if mov.children[r] != nil { mov.children[l] = mov.children[r] } else { mov.children[l] = nil } if cur.children[r] != nil { mov.children[r] = cur.children[r] mov.children[r].parent = mov } else { mov.children[r] = nil } // 连接转移后的节点 由于mov只是与cur交换值,parent不变 cur.children[r] = mov mov.size = getChildrenSumSize(mov) + 1 cur.size = getChildrenSumSize(cur) + 1 } func getChildrenSumSize(cur *tNode) int { return getSize(cur.children[0]) + getSize(cur.children[1]) } func getChildrenSize(cur *tNode) (int, int) { return getSize(cur.children[0]), getSize(cur.children[1]) } func getSize(cur *tNode) int { if cur == nil { return 0 } return cur.size } func (tree *vbTree) fixSizeWithRemove(cur *tNode) { for cur != nil { cur.size-- if cur.size > 8 { factor := cur.size / 10 // or factor = 1 if cur.children[1].size >= cur.children[0].size*2+factor || cur.children[0].size >= cur.children[1].size*2+factor { tree.fixSize(cur) } } cur = cur.parent } } func (tree *vbTree) fixSize(cur *tNode) { if cur.children[0].size > cur.children[1].size { llsize, lrsize := getChildrenSize(cur.children[0]) if lrsize > llsize { tree.rlrotate(cur) } else { tree.rrotate(cur) } } else { rlsize, rrsize := getChildrenSize(cur.children[1]) if rlsize > rrsize { tree.lrrotate(cur) } else { tree.lrotate(cur) } } } func output(tNode *tNode, prefix string, isTail bool, str *string) { if tNode.children[1] != nil { newPrefix := prefix if isTail { newPrefix += "│ " } else { newPrefix += " " } output(tNode.children[1], newPrefix, false, str) } *str += prefix if isTail { *str += "└── " } else { *str += "┌── " } *str += spew.Sprint(tNode.value) + "\n" if tNode.children[0] != nil { newPrefix := prefix if isTail { newPrefix += " " } else { newPrefix += "│ " } output(tNode.children[0], newPrefix, true, str) } } func outputfordebug(tNode *tNode, prefix string, isTail bool, str *string) { if tNode.children[1] != nil { newPrefix := prefix if isTail { newPrefix += "│ " } else { newPrefix += " " } outputfordebug(tNode.children[1], newPrefix, false, str) } *str += prefix if isTail { *str += "└── " } else { *str += "┌── " } suffix := "(" parentv := "" if tNode.parent == nil { parentv = "nil" } else { parentv = spew.Sprint(tNode.parent.value) } suffix += parentv + "|" + spew.Sprint(tNode.size) + ")" *str += spew.Sprint(tNode.value) + suffix + "\n" if tNode.children[0] != nil { newPrefix := prefix if isTail { newPrefix += " " } else { newPrefix += "│ " } outputfordebug(tNode.children[0], newPrefix, true, str) } } func (tree *vbTree) debugString() string { str := "AVLTree\n" if tree.root == nil { return str + "nil" } outputfordebug(tree.root, "", true, &str) return str }