Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

연결 목록의 대체 노드의 곱

<시간/>

n개의 노드가 주어졌을 때 작업은 연결 목록에서 대체 노드의 결과를 인쇄하는 것입니다. 프로그램은 노드의 위치를 ​​실제로 변경하지 않고 대체 노드의 제품만 인쇄해야 합니다.

Input -: 10 20 30 40 50 60
Output -: 15000

위의 예에서 첫 번째 노드부터 시작하여 10개의 대체 노드는 10, 30, 50이고 곱은 10*30*50 =15000입니다.

연결 목록의 대체 노드의 곱

위의 다이어그램에서 파란색 노드는 대체 노드이며 첫 번째 노드에서 시작하고 빨간색 노드는 중요하지 않은 노드입니다.

아래에 사용된 접근 방식은 다음과 같습니다.

  • 임시 포인터를 가져옵니다. 예를 들어 노드 유형의 temp

  • 이 임시 포인터를 헤드 포인터가 가리키는 첫 번째 노드로 설정합니다.

  • 상황(temp->next!=NULL &&temp!=NULL &&temp->next->next!=NULL)이 참인 동안 temp를 temp ->next -> next로 이동

  • product=product*(temp->data)

    설정

알고리즘

Start
Step 1 -> create structure of a node and temp, next and head as pointer to a structure node
   struct node
      int data
      struct node *next, *head, *temp
   End
Step 2 -> declare function to insert a node in a list
   void insert(int val)
      struct node* newnode = (struct node*)malloc(sizeof(struct node))
      newnode->data = val
      IF head= NULL
         set head = newnode
         set head->next = NULL
      End
      Else
         Set temp=head
         Loop While temp->next!=NULL
            Set temp=temp->next
         End
         Set newnode->next=NULL
         Set temp->next=newnode
      End
Step 3 -> Declare a function to display list
   void display()
      IF head=NULL
         Print no node
   End
Else
   Set temp=head
   Loop While temp!=NULL
      Print temp->data
      Set temp=temp->next
   End
End
Step 4 -> declare a function to find alternate nodes
   void alternate()
      declare int product
      Set temp=head
      Set product=head->data
      Loop While(temp->next!=NULL && temp!=NULL && temp->next-
         >next!=NULL)
         Set temp=temp->next->next
         Set product=product * (temp->data)
      End
      Print product
Step 5 -> in main()
   Create nodes using struct node* head = NULL;
   Call function insert(10) to insert a node
   Call display() to display the list
   Call alternate() to find alternate nodes product
Stop

코드

#include<stdio.h>
#include<stdlib.h>
//structure of a node
struct node {
   int data;
   struct node *next;
}*head,*temp;
//function for inserting nodes into a list
void insert(int val) {
   struct node* newnode = (struct node*)malloc(sizeof(struct node));
   newnode->data = val;
   if(head == NULL) {
      head = newnode;
      head->next = NULL;
      } else {
      temp=head;
      while(temp->next!=NULL) {
         temp=temp->next;
      }
      newnode->next=NULL;
      temp->next=newnode;
   }
}
//function for displaying a list
void display() {
   if(head==NULL)
      printf("no node ");
   else {
      temp=head;
      while(temp!=NULL) {
         printf("%d ",temp->data);
         temp=temp->next;
      }
   }
}
//function for finding alternate elements
void alternate() {
   int product;
   temp=head;
   product=head->data;
   while(temp->next!=NULL && temp!=NULL && temp->next->next!=NULL) {
      temp=temp->next->next;
      product=product * (temp->data);
   }
   printf("\nproduct of alternate nodes is %d : " ,product);
}
int main() {
   //creating list
   struct node* head = NULL;
   //inserting elements into a list
   insert(10);
   insert(20);
   insert(30);
   insert(40);
   insert(50);
   insert(60);
   //displaying the list
   printf("linked list is : ");
   display();

   //calling alternate function for finding product
   alternate();
   return 0;
}

출력

linked list is : 10 20 30 40 50 60
product of alternate nodes is : 15000