เมื่อจำเป็นต้องจัดเรียงองค์ประกอบของรายการที่เชื่อมโยงแบบวงกลม จะต้องสร้างคลาส 'โหนด' ในคลาสนี้ มีแอตทริบิวต์ 2 รายการ ได้แก่ ข้อมูลที่มีอยู่ในโหนด และการเข้าถึงโหนดถัดไปของรายการที่เชื่อมโยง
ในรายการเชื่อมโยงแบบวงกลม ส่วนหัวและส่วนหลังอยู่ติดกัน พวกมันเชื่อมต่อกันเป็นวงกลมและไม่มีค่า 'NULL' ในโหนดสุดท้าย
ต้องสร้างคลาส 'linked_list' อีกคลาสหนึ่งซึ่งจะมีฟังก์ชันการเริ่มต้น และส่วนหัวของโหนดจะเริ่มต้นเป็น 'None'
ผู้ใช้กำหนดวิธีการหลายวิธีในการเพิ่มโหนดไปยังรายการที่เชื่อมโยง จัดเรียงรายการที่เชื่อมโยงตามลำดับจากน้อยไปมากหรือจากมากไปน้อย และพิมพ์ค่าโหนด
ด้านล่างนี้เป็นการสาธิตสำหรับสิ่งเดียวกัน -
ตัวอย่าง
class Node: def __init__(self,data): self.data = data self.next = None class list_creation: def __init__(self): self.head = Node(None) self.tail = Node(None) self.head.next = self.tail self.tail.next = self.head def add_data(self,my_data): new_node = Node(my_data) if self.head.data is None: self.head = new_node self.tail = new_node new_node.next = self.head else: self.tail.next = new_node self.tail = new_node self.tail.next = self.head def sort_list(self): curr = self.head if(self.head == None): print("The list is empty") else: while(True): index_val = curr.next while(index_val != self.head): if(curr.data > index_val.data): temp = curr.data curr.data = index_val.data index_val.data = temp index_val = index_val.next curr =curr.next if(curr.next == self.head): break; def print_it(self): curr = self.head if self.head is None: print("The list is empty"); return; else: print(curr.data) while(curr.next != self.head): curr = curr.next print(curr.data) print("\n") class circular_linked_list: my_cl = list_creation() print("Nodes are being added to the list") my_cl.add_data(21) my_cl.add_data(54) my_cl.add_data(78) my_cl.add_data(99) my_cl.add_data(27) print("The list is :") my_cl.print_it() print("The list is being sorted") my_cl.sort_list() print("The sorted list is : ") my_cl.print_it()
ผลลัพธ์
Nodes are being added to the list The list is : 21 54 78 99 27 The list is being sorted The sorted list is : 21 27 54 78 99
คำอธิบาย
- สร้างคลาส 'โหนด' แล้ว
- สร้างคลาสอื่นที่มีคุณสมบัติที่จำเป็นแล้ว
- มีการกำหนดวิธีการอื่นที่เรียกว่า 'sort_list' ซึ่งใช้ในการจัดเรียงองค์ประกอบในรายการที่เชื่อมโยงแบบวงกลมในลำดับจากน้อยไปมากหรือจากมากไปน้อย
- มีการกำหนดวิธีการอื่นที่เรียกว่า 'print_it' ซึ่งแสดงโหนดของรายการที่เชื่อมโยงแบบวงกลม
- วัตถุของคลาส 'list_creation' ถูกสร้างขึ้น และมีการเรียกใช้เมธอดเพื่อเพิ่มข้อมูล
- มีการกำหนดวิธีการ 'init' ซึ่งโหนดแรกและโหนดสุดท้ายของรายการที่เชื่อมโยงแบบวงกลมเป็นไม่มี
- เรียกวิธีการ "sort_list"
- มันวนซ้ำผ่านรายการ และวางองค์ประกอบในตำแหน่งที่เกี่ยวข้องตามค่า
- แสดงบนคอนโซลโดยใช้วิธี "print_it"