Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

โปรแกรม Python เพื่อแสดงโหนดของ Tree โดยใช้ BFS Traversal


เมื่อจำเป็นต้องแสดงโหนดของต้นไม้โดยใช้การข้ามผ่านการค้นหาครั้งแรกแบบกว้าง คลาสจะถูกสร้างขึ้นและประกอบด้วยวิธีการตั้งค่าโหนดรูท เพิ่มองค์ประกอบให้กับทรี ค้นหาองค์ประกอบเฉพาะ ดำเนินการ 'bfs' ( ค้นหากว้างๆ ก่อน) เป็นต้น สามารถสร้างอินสแตนซ์ของคลาสเพื่อเข้าถึงและใช้เมธอดเหล่านี้ได้

ด้านล่างนี้เป็นการสาธิตสิ่งเดียวกัน -

ตัวอย่าง

class Tree_struct:
   def __init__(self, data=None):
      self.key = data
      self.children = []

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

   def add_node(self, node):
      self.children.append(node)

   def search_node(self, key):
      if self.key == key:
         return self
      for child in self.children:
         temp = child.search_node(key)
         if temp is not None:
            return temp
      return None

   def bfs_operation(self):
      queue = [self]
      while queue != []:
         popped = queue.pop(0)
         for child in popped.children:
            queue.append(child)
         print(popped.key, end=' ')

my_instance = None

print('Menu (assume no duplicate keys)')
print('add <data> at root')
print('add <data> below <data>')
print('bfs')
print('quit')

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

   operation = my_input[0].strip().lower()
   if operation == 'add':
      data = int(my_input[1])
      new_node = Tree_struct(data)
      suboperation = my_input[2].strip().lower()
      if suboperation == 'at':
         my_instance = new_node
      elif suboperation == 'below':
         position = my_input[3].strip().lower()
         key = int(position)
         ref_node = None
         if my_instance is not None:
            ref_node = my_instance.search_node(key)
         if ref_node is None:
            print('No such key')
            continue
         ref_node.add_node(new_node)

   elif operation == 'bfs':
      if my_instance is None:
         print('The tree is empty')
      else:
         print('Breadth First Search traversal is : ', end='')
         my_instance.bfs_operation()
         print()

   elif operation == 'quit':
      break

ผลลัพธ์

Menu (assume no duplicate keys)
add <data> at root
add <data> below <data>
bfs
quit
What operation would you do ? add 6 at root
What operation would you do ? add 4 below 6
What operation would you do ? add 9 below 4
What operation would you do ? bfs
Breadth First Search traversal is : 6 4 9
What operation would you do ? quit

คำอธิบาย

  • สร้างคลาส 'Tree_struct' พร้อมแอตทริบิวต์ที่จำเป็นแล้ว

  • มีฟังก์ชัน 'init' ที่ใช้สร้างรายการว่าง

  • มีการกำหนดวิธีการ "set_root" ที่ช่วยตั้งค่ารูทของไบนารีทรี

  • มันมีวิธีการ 'add_node' ที่ช่วยเพิ่มองค์ประกอบให้กับต้นไม้

  • มีการกำหนดเมธอดที่ชื่อว่า "search_elem" ซึ่งช่วยในการค้นหาองค์ประกอบเฉพาะ

  • มีการกำหนดเมธอดที่ชื่อว่า 'bfs_operation' ซึ่งช่วยให้ดำเนินการค้นหาแบบข้ามผ่านครั้งแรกแบบกว้างๆ บนแผนผังได้

  • มีการสร้างและกำหนดอินสแตนซ์ให้กับ "ไม่มี"

  • ผู้ใช้ป้อนข้อมูลสำหรับการดำเนินการที่จำเป็นต้องดำเนินการ

  • ขึ้นอยู่กับทางเลือกของผู้ใช้ การดำเนินการจะดำเนินการ

  • เอาต์พุตที่เกี่ยวข้องจะแสดงบนคอนโซล