MCPcopy
hub / github.com/Jack-Lee-Hiter/AlgorithmsByPython / isLeftChild

Method isLeftChild

AVL.py:16–17  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

14 return self.rightChild
15
16 def isLeftChild(self):
17 return self.parent and self.parent.leftChild == self
18
19 def isRightChild(self):
20 return self.parent and self.parent.rightChild == self

Callers 5

updateBalanceMethod · 0.45
rotateLeftMethod · 0.45
spliceOutMethod · 0.45
findSuccessorMethod · 0.45
removeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected