Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/Jack-Lee-Hiter/AlgorithmsByPython
/ hasRightChild
Method
hasRightChild
AVL.py:13–14 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
11
return
self.leftChild
12
13
def
hasRightChild(self):
14
return
self.rightChild
15
16
def
isLeftChild(self):
17
return
self.parent and self.parent.leftChild == self
Callers
3
replaceNodeData
Method · 0.95
_put
Method · 0.45
findSuccessor
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected