
Oke pada kesempatan kali ini saya ingin membagikan hasil Program Sederhana Tree saya di Python
Disini saya menggunakan Pycharm dengan Python 2.7
Berikut Source codenya: Bisa dari Github atau liat di bawah
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(10)
root.insert(5)
root.insert(9)
root.PrintTree()
Output Program nanti seperti ini :

Untuk video nya bisa lihat di bawah :
Semoga Bermanfaat.
