MCPcopy Create free account
hub / github.com/HuberTRoy/leetCode / suffPrint

Method suffPrint

Tree/BinarySearchTree.py:125–130  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

123 result.append(root.val)
124
125 def suffPrint(self):
126 # 左右根
127 result = []
128 self._suffPrint(self.root, result)
129
130 return result
131
132
133oneTree = binarySearchTree(5)

Callers 1

Calls 1

_suffPrintMethod · 0.95

Tested by

no test coverage detected