Python程序-圆形链接列表的元素排序
当需要对循环链接列表的元素进行排序时,需要创建一个”Node”类。该类有两个属性,节点中存在的数据和链表的下一个节点的访问。
在循环链接列表中,头和尾相邻。它们连接形成一个圆,最后一个节点没有”NULL”值。
需要创建另一个”linked_list”类,该类将具有初始化函数,并将节点的头初始化为”None”。
用户定义多个方法以将节点添加到链接列表中、升序或降序排序链接列表以及打印节点值。
下面是相同的演示 −
更多Python相关文章,请阅读:Python 教程
示例
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()
输出
正在将节点添加到列表中
列表为:
21
54
78
99
27
正在对列表进行排序
已排序的列表为:
21
27
54
78
99
解释
- 创建了”Node”类。
- 创建另一个具有所需属性的类。
- 定义了另一个名为”sort_list”的方法,用于升序或降序排序循环链接列表中的元素。
- 定义另一个名为”print_it”的方法,用于显示循环链接列表的节点。
- 创建了一个”list_creation”类的对象,并在其上调用方法以添加数据。
- 定义了一个”init”方法,将循环链接列表的第一个和最后一个节点设置为”None”。
- 调用”sort_list”方法。
- 它遍历列表,并根据值将元素放置在其相关位置。
- 使用”print_it”方法将其显示在控制台上。