Python程序:在链表中搜索元素(不使用递归)


当需要在链表中搜索元素而不使用递归方法时,需要一个向链表添加值的方法,以及一个显示链表元素的方法。

它还需要一个方法来帮助查找正在搜索的元素的索引。

下面是演示:

示例

 在线演示

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 print_it(self):
      curr = self.head
      while curr is not None:
         print(curr.data)
         curr = curr.next

   def find_index_val(self, my_key):
      curr = self.head

      index_val = 0
      while curr:
         if curr.data == my_key:
            return index_val
         curr = curr.next
         index_val = index_val + 1
      return -1

my_instance = my_linked_list()
my_list = [67, 4, 78, 98, 32, 0, 11, 8]
for data in my_list:
   my_instance.add_value(data)
print('The linked list is : ')
my_instance.print_it()
print()

my_key = int(input('What value would you search for? '))
index_val = my_instance.find_index_val(my_key)
if index_val == -1:
   print(str(my_key) + ' was not found.')
else:
   print('Element was found at index ' + str(index_val) + '.')
n = int(input('How many elements would you wish to add ? '))
for i in range(n):
   data = int(input('Enter data : '))
   my_instance.add_value(data)
print('The linked list is : ')
my_instance.print_it()

输出

The linked list is :
67
4
78
98
32
0
11
8
What value would you search for? 11
Element was found at index 6.
How many elements would you wish to add ? 2
Enter data : 111
Enter data : 56
The linked list is :
67
4
78
98
32
0
11
8
111
56

解释

  • 创建“Node”类。

  • 创建另一个具有所需属性的“my_linked_list”类。

  • 它有一个“init”函数,用于初始化第一个元素,即“head”为“None”,最后一个节点为“None”。

  • 定义另一个名为“add_value”的方法,用于向链表添加数据。

  • 定义另一个名为“print_it”的方法,用于在控制台上显示链表数据。

  • 定义另一个名为“find_index_val”的方法,用于查找用户输入的元素的索引。

  • 创建“my_linked_list”类的对象。

  • 定义一个列表。

  • 遍历此列表,并调用方法向其中添加数据。

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

  • 提示用户输入要搜索的元素。

  • 对此调用“find_index_val”方法,并在控制台上显示输出。

更新于: 2021年4月14日

462 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始学习
广告

© . All rights reserved.