mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
19 lines
421 B
Python
19 lines
421 B
Python
|
class Node(object):
|
||
|
|
||
|
def __init__(self, data):
|
||
|
self.data = data
|
||
|
self.left = None
|
||
|
self.right = None
|
||
|
|
||
|
def insert(root, data):
|
||
|
if data <= root.data:
|
||
|
if root.left is None:
|
||
|
root.left = Node(data)
|
||
|
else:
|
||
|
insert(root.left, data)
|
||
|
else:
|
||
|
if root.right is None:
|
||
|
root.right = Node(data)
|
||
|
else:
|
||
|
insert(root.right, data)
|