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”方法,並在控制檯上顯示輸出。
廣告