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

โปรแกรม Python สร้างรายการ n nodes ที่เชื่อมโยงเป็นทวีคูณและนับจำนวนโหนด


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

ในรายการที่เชื่อมโยงแบบทวีคูณ โหนดมีตัวชี้ โหนดปัจจุบันจะมีตัวชี้ไปยังโหนดถัดไปและโหนดก่อนหน้า ค่าสุดท้ายในรายการจะมีค่า 'NULL' ในพอยน์เตอร์ถัดไป สามารถเดินทางได้ทั้งสองทิศทาง

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

ตัวอย่าง

class Node:
   def __init__(self, my_data):
      self.prev = None
      self.data = my_data
      self.next = None
class count_val:
   def __init__(self):
      self.head = None
      self.tail = None
   def add_data(self, my_data):
      new_node = Node(my_data)
      if(self.head == None):
         self.head = self.tail = new_node;
         self.head.previous = None;
         self.tail.next = None;
      else:
         self.tail.next = new_node;
         new_node.previous = self.tail;
         self.tail = new_node;
         self.tail.next = None;
   def count_node(self):
      my_counter = 0;
      curr = self.head;
      while(curr != None):
         my_counter = my_counter + 1;
         curr = curr.next;
      return my_counter;
   def print_it(self):
      curr = self.head
      if (self.head == None):
         print("The list is empty")
         return
      print("The nodes are :")
      while curr != None:
         print(curr.data)
         curr = curr.next
my_instance = count_val()
print("Elements are being added to the list")
my_instance.add_data(10)
my_instance.add_data(14)
my_instance.add_data(24)
my_instance.add_data(17)
my_instance.add_data(22)
my_instance.print_it()
print("The nodes in the doubly linked list are : ")
print(my_instance.count_node())

ผลลัพธ์

Elements are being added to the list
The nodes are :
10
14
24
17
22
The nodes in the doubly linked list are :
5

คำอธิบาย

  • สร้างคลาส 'โหนด' แล้ว
  • สร้างคลาสอื่นที่มีคุณสมบัติที่จำเป็นแล้ว
  • มีการกำหนดวิธีการชื่อ 'add_data' ซึ่งใช้ในการเพิ่มข้อมูลไปยังรายการที่เชื่อมโยงแบบทวีคูณ
  • มีการกำหนดวิธีการอื่นที่เรียกว่า 'count_node' ซึ่งช่วยในการดึงจำนวนโหนดในรายการที่เชื่อมโยงแบบทวีคูณ
  • มีการกำหนดวิธีการอื่นที่เรียกว่า 'print_it' ซึ่งแสดงโหนดของรายการที่เชื่อมโยงแบบวงกลม
  • อ็อบเจ็กต์ของคลาส 'count_val' ถูกสร้างขึ้น และมีการเรียกใช้เมธอดเพื่อแปลงรายการที่เชื่อมโยงแบบทวีคูณเป็นทรีที่ประกอบด้วยสามส่วน
  • มีการกำหนดวิธีการ 'init' ที่โหนดรูท ส่วนหัว และส่วนท้ายของรายการที่เชื่อมโยงแบบทวีคูณเป็นไม่มี
  • มีการเรียกเมธอด 'count_node'
  • มันวนซ้ำผ่านรายการที่เชื่อมโยงแบบทวีคูณ และรับจำนวนโหนดในรายการ
  • แสดงบนคอนโซลโดยใช้วิธี "print_it"