Find the node which contains the given value
(self, a)
| 421 | return node if node.contains(a) else None |
| 422 | |
| 423 | def findNode(self, a): |
| 424 | """ Find the node which contains the given value """ |
| 425 | self.lastSearchDepth = 0 |
| 426 | return self.__find(self.root, a) |
| 427 | |
| 428 | def findInorderSucc(self, node, a): |
| 429 | """ Returns inorder successor of any node """ |
no test coverage detected