Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

พิมพ์โหนด k สุดท้ายของรายการที่เชื่อมโยงในลำดับย้อนกลับ วิธีการวนซ้ำในภาษาซี


เราต้องพิมพ์จำนวน k โหนดของรายการที่เชื่อมโยงในลำดับย้อนกลับ เราต้องใช้วิธีการวนซ้ำเพื่อแก้ปัญหานี้

วิธีการวนซ้ำเป็นวิธีที่โดยทั่วไปใช้การวนซ้ำที่ดำเนินการจนกว่าเงื่อนไขจะมีค่า 1 หรือจริง

สมมติว่ารายการมีโหนด 29, 34, 43, 56 และ 88 และค่าของ k คือ 2 กว่าผลลัพธ์จะเป็นโหนดสำรองจนถึง k เช่น 56 และ 88

พิมพ์โหนด k สุดท้ายของรายการที่เชื่อมโยงในลำดับย้อนกลับ วิธีการวนซ้ำในภาษาซี

ตัวอย่าง

Linked List: 29->34->43->56->88
Input: 2
Output: 56 88

เนื่องจากเราต้องลบองค์ประกอบ k สุดท้ายออกจากรายการ วิธีที่ดีที่สุดคือการใช้โครงสร้างข้อมูลสแต็กซึ่งองค์ประกอบจะถูกผลักซึ่งจะสร้างรายการและองค์ประกอบเริ่มต้นของสแต็กเป็นองค์ประกอบสุดท้ายของรายการ เด้งออกจากสแต็กจนถึงจำนวนครั้งที่ kth ทำให้เรามีโหนดสุดท้ายของรายการที่เชื่อมโยง

โค้ดด้านล่างแสดงการใช้งาน c ของอัลกอริทึมที่กำหนด

อัลกอริทึม

START
   Step 1 -> create node variable of type structure
      Declare int data
      Declare pointer of type node using *next
   Step 2 -> create struct node* intoList(int data)
      Create newnode using malloc
      Set newnode->data = data
      newnode->next = NULL
      return newnode
   step 3 -> Declare function void rev(struct node* head,int count, int k)
      create struct node* temp1 = head
      Loop While(temp1 != NULL)
         count++
         temp1 = temp1->next
      end
      Declare int array[count], temp2 = count,i
      Set temp1 = head
      Loop While(temp1 != NULL)
         Set array[--temp2] = temp1->data
         Set temp1 = temp1->next
      End
      Loop For i = 0 and i < k and i++
         Print array[i]
      End
   Step 4 -> In Main()
      Create list using struct node* head = intoList(9)
      Set k=3 and count=0
      Call rev(head,count,k)
STOP

ตัวอย่าง

#include<stdio.h>
#include<stdlib.h>
// Structure of a node
struct node {
   int data;
   struct node *next;
};
//functon for inserting a new node
struct node* intoList(int data) {
   struct node* newnode = (struct node*)malloc(sizeof(struct node));
   newnode->data = data;
   newnode->next = NULL;
   return newnode;
}
// Function to reversely printing the elements of a node
void rev(struct node* head,int count, int k) {
   struct node* temp1 = head;
   while(temp1 != NULL) {
      count++;
      temp1 = temp1->next;
   }
   int array[count], temp2 = count,i;
   temp1 = head;
   while(temp1 != NULL) {
      array[--temp2] = temp1->data;
      temp1 = temp1->next;
   }
   for(i = 0; i < k; i++)
   printf("%d ",array[i]);
}
int main() {
   printf("\nreverse of a list is : ");
   struct node* head = intoList(9); //inserting elements into a list
   head->next = intoList(76);
   head->next->next = intoList(13);
   head->next->next->next = intoList(24);
   head->next->next->next->next = intoList(55);
   head->next->next->next->next->next = intoList(109);
   int k = 3, count = 0;
   rev(head, count, k); //calling function to print reversely
   return 0;
}

ผลลัพธ์

หากเรารันโปรแกรมด้านบน มันจะสร้างผลลัพธ์ต่อไปนี้

reverse of a list is : 109 55 24