Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
133
oneTree = binarySearchTree(5)
Callers
1
BinarySearchTree.py
File · 0.80
Calls
1
_suffPrint
Method · 0.95
Tested by
no test coverage detected