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

โปรแกรม Python หาความยาวของ Linked List โดยใช้ Recursion


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

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

ตัวอย่าง

class Node:
   def __init__(self, data):
      self.data = data
      self.next = None

class my_linked_list:
   def __init__(self):
      self.head = None
      self.last_node = None

   def add_value(self, my_data):
      if self.last_node is None:
         self.head = Node(my_data)
         self.last_node = self.head
      else:
         self.last_node.next = Node(my_data)
         self.last_node = self.last_node.next

   def calculate_length(self):
      return self.length_helper_fun(self.head)

   def length_helper_fun(self, curr):
      if curr is None:
         return 0
      return 1 + self.length_helper_fun(curr.next)

my_instance = my_linked_list()
my_data = input('Enter elements of the linked list ').split()
for elem in my_data:
   my_instance.add_value(int(elem))
print('The length of the linked list is ' + str(my_instance.calculate_length()))

ผลลัพธ์

Enter elements of the linked list 12 45 32 67 88 0 99
The length of the linked list is 7

คำอธิบาย

  • สร้างคลาส "โหนด" แล้ว

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

  • มีฟังก์ชัน 'init' ที่ใช้ในการเริ่มต้นองค์ประกอบแรก นั่นคือ 'head' เป็น 'None' และโหนดสุดท้ายเป็น 'None'

  • มีการกำหนดวิธีการอื่นที่ชื่อว่า 'add_value' ซึ่งใช้ในการเพิ่มข้อมูลไปยังรายการที่เชื่อมโยง

  • มีการกำหนดวิธีการอื่นที่ชื่อว่า 'calculate_length' ซึ่งใช้เพื่อเรียกใช้ฟังก์ชันตัวช่วยเพื่อค้นหาความยาวของรายการที่เชื่อมโยง

  • มีการกำหนดฟังก์ชันตัวช่วย เนื่องจากจำเป็นต้องใช้การเรียกซ้ำที่นี่

  • จะตรวจสอบค่าปัจจุบันของโหนด และส่งกลับความยาวของรายการ

  • วัตถุของคลาส 'my_linked_list' ถูกสร้างขึ้น

  • ผู้ใช้ป้อนข้อมูลสำหรับองค์ประกอบในรายการที่เชื่อมโยง

  • มีการเรียกใช้เมธอดเพื่อเพิ่มข้อมูล

  • มีการเรียกเมธอด callu_length และเอาต์พุตจะแสดงบนคอนโซล