14_데이터 구조 와 알고리즘이 진 트 리파 이 썬 구현
1384 단어 데이터 구조
#Created By: Chen Da
class BinaryTree(object):
def __init__(self,rootObj):
self.key = rootObj
self.left_child = None
self.right_child = None
def insert_left(self,new_node):
if self.left_child == None:
self.left_child = BinaryTree(new_node)
else:
tree_ = BinaryTree(new_node)
tree_.left_child = self.left_child #
self.left_child = tree_ #
def insert_right(self,new_node):
if self.right_child == None:
self.right_child = BinaryTree(new_node)
else:
tree_ = BinaryTree(new_node)
tree_.left_child = self.left_child
self.left_child = tree_
def get_right_child(self):
return self.right_child
def get_left_child(self):
return self.left_child
def set_root_val(self,obj):
self.key = obj
def get_root_val(self):
return self.key
def test_BinaryTree():
tree1 = BinaryTree('a')
assert tree1.get_root_val() == 'a'
tree1.insert_left('b')
tree1.insert_right('c')
tree1.set_root_val('d')
assert tree1.get_root_val() == 'd'
print(tree1.left_child)
print(tree1.right_child)
if __name__ == "__main__":
test_BinaryTree()
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.