从一个给定的数组创建 C++ 程序中的链表


在此教程中,我们将学习如何从给定的 数组 创建一个 链表

让我们看看解决此问题所需的步骤。

  • 使用虚拟数据初始化数组。

  • 编写结构节点。

  • 迭代数组。

    • 使用数据创建一个新节点。

    • 将新节点插入链表。

  • 打印链表。

示例

让我们看看代码。

#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

结论

如果您对本教程有任何疑问,请在评论部分中提及。

更新时间:15-Sep-2023

27K+ 浏览次数

开始你的职业

完成课程以获得认证

开始
广告