MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / preShow

Method preShow

data_structures/avl.py:157–161  ·  view source on GitHub ↗
(self, curr_node)

Source from the content-addressed store, hash-verified

155 return False
156
157 def preShow(self, curr_node):
158 if curr_node is not None:
159 self.preShow(curr_node.left)
160 print(curr_node.label, end=" ")
161 self.preShow(curr_node.right)
162
163 def preorder(self, curr_node):
164 if curr_node is not None:

Callers 1

preorderMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected