Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

주어진 2개의 연결 목록 사이에서 첫 번째 공통 요소를 찾는 Python 프로그램

<시간/>

두 연결 리스트 사이에서 처음으로 발생하는 공통 요소를 찾아야 할 때 연결 리스트에 요소를 추가하는 방법과 이들 연결 리스트에서 처음으로 발생하는 공통 요소를 얻는 방법을 정의합니다. .

아래는 동일한 데모입니다 -

예시

class Node:
   def __init__(self, data):
      self.data = data
      self.next = None

class LinkedList_structure:
   def __init__(self):
      self.head = None
      self.last_node = None

   def add_vals(self, data):
      if self.last_node is None:
         self.head = Node(data)
         self.last_node = self.head
      else:
         self.last_node.next = Node(data)
         self.last_node = self.last_node.next

def first_common_val(list_1, list_2):
   curr_1 = list_1.head
   while curr_1:
      data = curr_1.data
      curr_2 = list_2.head
      while curr_2:
         if data == curr_2.data:
            return data
         curr_2 = curr_2.next
      curr_1 = curr_1.next
   return None

my_list_1 = LinkedList_structure()
my_list_2 = LinkedList_structure()

my_list = input('Enter the elements of the first linked list : ').split()
for elem in my_list:
   my_list_1.add_vals(int(elem))

my_list = input('Enter the elements of the second linked list : ').split()
for elem in my_list:
   my_list_2.add_vals(int(elem))

common_vals = first_common_val(my_list_1, my_list_2)

if common_vals:
   print('The element that is present first in the first linked list and is common to both is {}.'.format(common))
else:
   print('The two lists have no common elements')

출력

Enter the elements of the first linked list : 45 67 89 123 45
Enter the elements of the second linked list : 34 56 78 99 0 11
The two lists have no common elements

설명

  • 'Node' 클래스가 생성됩니다.

  • 필수 속성이 있는 또 다른 'LinkedList_structure' 클래스가 생성됩니다.

  • 첫 번째 요소, 즉 'head'를 'None'으로 초기화하는 데 사용되는 'init' 기능이 있습니다.

  • 스택에 값을 추가하는 데 도움이 되는 'add_vals'라는 메서드가 정의되어 있습니다.

  • 두 개의 연결 목록에서 발견된 첫 번째 공통 값을 찾는 데 도움이 되는 'first_common_val'이라는 또 다른 메서드가 정의되어 있습니다.

  • 'LinkedList_structure'의 인스턴스 2개가 생성됩니다.

  • 두 연결 목록에 요소가 추가됩니다.

  • 이러한 연결 리스트에서 'first_common_value' 메소드가 호출됩니다.

  • 출력은 콘솔에 표시됩니다.