(self)
| 107 | self._middlePrint(root.right,result) |
| 108 | |
| 109 | def middlePrint(self): |
| 110 | # 左根右 |
| 111 | result = [] |
| 112 | self._middlePrint(self.root, result) |
| 113 | |
| 114 | return result |
| 115 | |
| 116 | def _suffPrint(self, root, result): |
| 117 | if root.left: |
no test coverage detected