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

สร้างรายการที่เชื่อมโยงจากอาร์เรย์ที่กำหนดใน C++ Program


ในบทช่วยสอนนี้ เราจะเรียนรู้วิธีสร้างรายการที่เชื่อมโยงจากอาร์เรย์ที่กำหนด

มาดูขั้นตอนการแก้ปัญหากัน

  • เริ่มต้นอาร์เรย์ด้วยข้อมูลจำลอง

  • เขียนโหนดโครงสร้าง

  • วนซ้ำบนอาร์เรย์

    • สร้างโหนดใหม่ด้วยข้อมูล

    • แทรกโหนดใหม่ลงในรายการที่เชื่อมโยง

  • พิมพ์รายการที่เชื่อมโยง

ตัวอย่าง

มาดูโค้ดกันเลย

#include <bits/stdc++.h>
using namespace std;
struct Node {
   int data;
   Node* next;
};
struct Node* newNode(int data) {
   Node* node = new Node;
   node->data = data;
   node->next = NULL;
   return node;
}
void insertNewNode(Node** root, int data) {
   Node* node = newNode(data);
   Node* ptr;
   if (*root == NULL) {
      *root = node;
   }
   else {
      ptr = *root;
      while (ptr->next != NULL) {
         ptr = ptr->next;
      }
      ptr->next = node;
   }
}
void printLinkedList(Node* root) {
   while (root != NULL) {
      cout << root->data << " -> ";
      root = root->next;
   }
   cout << "NULL" << endl;
}
Node* createLinkedList(int arr[], int n) {
   Node *root = NULL;
   for (int i = 0; i < n; i++) {
      insertNewNode(&root, arr[i]);
   }
   return root;
}
int main() {
   int arr[] = { 1, 2, 3, 4, 5 }, n = 5;
   Node* root = createLinkedList(arr, n);
   printLinkedList(root);
   return 0;
}

ผลลัพธ์

หากคุณเรียกใช้โค้ดด้านบน คุณจะได้ผลลัพธ์ดังต่อไปนี้

1 -> 2 -> 3 -> 4 -> 5 -> NULL

บทสรุป

หากคุณมีข้อสงสัยใดๆ ในบทแนะนำ โปรดระบุในส่วนความคิดเห็น