Interested in advertising on Furbooru? Click here for information!
Meet Furrever Love Here!

Furbooru is not cheap to operate - help support us financially!

Description

class Node:
def \_\_init\_\_\(self, data\):

    self.left = None
    self.right = None
    self.data = data

def insert\(self, data\):
# Compare the new value with the parent node
if self.data:
if data < self.data:
if self.left is None:
self.left = Node(data)
else:
self.left.insert(data)
elif data > self.data:
if self.right is None:
self.right = Node(data)
else:
self.right.insert(data)
else:
self.data = data
# Print the tree
def PrintTree(self):
if self.left:
self.left.PrintTree()
print( self.data),
if self.right:
self.right.PrintTree()
# Use the insert method to add nodes
root = Node(12)
root.insert(6)
root.insert(14)
root.insert(3)
root.PrintTree()

safe159927 artist:cryptid-creations1500 fictional species146601 flora fauna251 hybrid7945 python78 reptile17740 snake3470 feral65751 ambiguous gender22583 plant8336 pun1179 solo203012 solo ambiguous10605 tree7298 tree python1

Comments

Syntax quick reference: **bold** *italic* ||hide text|| `code` __underline__ ~~strike~~ ^sup^ %sub%

Detailed syntax guide