Python程序在循环链接列表中搜索元素

当需要在循环链表中搜索元素时,需要创建一个“节点”类。在此类中,有两个属性,即节点中存在的数据和对链表的下一个节点的访问。

在圆形链表中,头部和后部彼此相邻。它们连接形成一个圆,并且在最后一个节点中没有'NULL'值。需要创建另一个具有初始化功能的类,并将节点的头初始化为“无”。

用户定义了多种方法,可将节点添加到链表,在链表中搜索特定节点并打印节点值。

以下是相同的演示-

示例

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 search_value(self,elem_to_search):

      curr = self.head;

      i = 1;

      flag_val = False;

      if(self.head == None):

         print("The list is empty");

      else:

         while(True):

            if(curr.data == elem_to_search):

               flag_val = True;

               break;

            curr = curr.next;

            i = i + 1;

            if(curr == self.head):

               break;

         if(flag_val):

            print("元素存在于列表中的位置: " + str(i));

         else:

            print("The element is not present in list");

   def print_it(self):

      curr = self.head

      ifself.headis 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("清单是:")

   my_cl.print_it()

   print("Value 99 is being searched")

   my_cl.search_value(99)

   print("Value 0 is being searched")

   my_cl.search_value(0)

输出结果
Nodes are being added to the list

清单是:

21

54

78

99

27

Value 99 is being searched

元素存在于列表中的位置: 4

Value 0 is being searched

The element is not present in list

解释

  • 将创建“节点”类。

  • 创建具有必需属性的另一个类。

  • 定义了另一个名为“ search_value”的方法,该方法用于搜索链表中的特定元素。

  • 定义了另一个名为“ print_it”的方法,该方法显示循环链接列表的节点。

  • 创建“ list_creation”类的对象,并在其上调用方法以添加数据。

  • 定义了一个“ init”方法,该方法将循环链表的第一个和最后一个节点设置为None。

  • 调用“ search_value”方法。

  • 它遍历列表,并检查是否找到了需要搜索的元素。

  • 如果找到,则显示其索引。

  • 这使用“ print_it”方法显示在控制台上。

以上是 Python程序在循环链接列表中搜索元素 的全部内容, 来源链接: utcz.com/z/313905.html

回到顶部