Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

왼쪽 하위 트리의 노드만 인쇄하는 Python 프로그램

<시간/>

왼쪽 하위 트리의 노드를 인쇄해야 하는 경우 루트 노드를 설정하고, 순서대로 탐색을 수행하고, 루트 노드의 오른쪽에 요소를 삽입하고, 왼쪽에 요소를 삽입하는 메서드로 구성된 클래스를 만들 수 있습니다. 루트 노드 등이 있습니다. 클래스의 인스턴스가 생성되고 메서드를 사용하여 필요한 작업을 수행할 수 있습니다.

아래는 동일한 데모입니다 -

예시

class BinaryTree_struct:
   def __init__(self, data=None):
      self.key = data
      self.left = None
      self.right = None

   def set_root(self, data):
      self.key = data

   def inorder_traversal(self):
      if self.left is not None:
         self.left.inorder_traversal()
      print(self.key, end=' ')
      if self.right is not None:
         self.right.inorder_traversal()

   def insert_at_left(self, new_node):
      self.left = new_node

   def insert_at_right(self, new_node):
      self.right = new_node

   def search_elem(self, key):
      if self.key == key:
         return self
      if self.left is not None:
         temp = self.left.search_elem(key)
         if temp is not None:
            return temp
      if self.right is not None:
         temp = self.right.search_elem(key)
         return temp
      return None

   def print_left_part(self):
      if self.left is not None:
         self.left.inorder_traversal()

my_instance = None

print('Menu (this assumes no duplicate keys)')
print('insert <data> at root')
print('insert <data> left of <data>')
print('insert <data> right of <data>')
print('left')
print('quit')

while True:
   my_input = input('What operation would you do ? ').split()

   operation = my_input[0].strip().lower()
   if operation == 'insert':
      data = int(my_input[1])
      new_node = BinaryTree_struct(data)
      suboperation = my_input[2].strip().lower()
      if suboperation == 'at':
         my_instance = new_node
      else:
         position = my_input[4].strip().lower()
         key = int(position)
         ref_node = None
         if my_instance is not None:
            ref_node = my_instance.search_elem(key)
         if ref_node is None:
            print('No such key')
            continue
         if suboperation == 'left':
            ref_node.insert_at_left(new_node)
         elif suboperation == 'right':
            ref_node.insert_at_right(new_node)

   elif operation == 'left':
      print('Nodes of the left subtree are : ', end='')
      if my_instance is not None:
         my_instance.print_left_part()
         print()

   elif operation == 'quit':
      break

출력

Menu (this assumes no duplicate keys)
insert <data> at root
insert <data> left of <data>
insert <data> right of <data>
left
quit
What operation would you do ? insert 5 at root
What operation would you do ? insert 6 left of 5
What operation would you do ? insert 8 right of 5
What operation would you do ? left
Nodes of the left subtree are : 6
What operation would you do ? quit
Use quit() or Ctrl-D (i.e. EOF) to exit

설명

  • 필수 속성을 가진 'BinaryTree_struct' 클래스가 생성됩니다.

  • 왼쪽과 오른쪽 노드를 'None'에 할당하는 데 사용되는 '초기화' 기능이 있습니다.

  • 이진 트리의 루트 값을 설정하는 데 도움이 되는 'set_root' 메서드가 정의되어 있습니다.

  • 트리의 오른쪽 노드에 요소를 추가하는 데 도움이 되는 'insert_at_right' 메서드가 있습니다.

  • 트리의 왼쪽 노드에 요소를 추가하는 데 도움이 되는 'insert_at_left' 메서드가 있습니다.

  • 순서 순회를 수행하는 'inorder_traversal'이라는 또 다른 메서드입니다.

  • 특정 요소를 검색하는 데 도움이 되는 'search_elem'이라는 메서드가 정의되어 있습니다.

  • 콘솔에 바이너리 트리의 왼쪽 부분만 표시하는 데 도움이 되는 'print_left_part'라는 또 다른 메서드가 정의되어 있습니다.

  • 인스턴스가 생성되어 '없음'으로 지정됩니다.

  • 수행해야 하는 작업에 대해 사용자 입력을 받습니다.

  • 사용자의 선택에 따라 작업이 수행됩니다.• 콘솔에 해당 출력이 표시됩니다.