在本教程中,我们将学习如何从单链列表中删除所有主要节点。
让我们看看解决问题的步骤。
用数据和下一个指针写struct。
编写一个函数以将节点插入到单链列表中。
用伪数据初始化单链表。
遍历单链表。查找当前节点数据是否为素数。
如果当前数据是素数,则删除该节点。
编写一个删除节点的函数。删除节点时,请考虑以下三种情况。
如果该节点是头节点,则将头移到下一个节点。
如果该节点是中间节点,则将下一个节点链接到上一个节点
如果该节点是结束节点,则删除上一个节点链接。
让我们看一下代码。
#include <bits/stdc++.h> using namespace std; struct Node { int data; Node *next; }; void insertNode(Node** head_ref, int new_data) { Node* new_node = (Node*)malloc(sizeof(struct Node)); new_node->data = new_data; new_node->next = (*head_ref); (*head_ref) = new_node; } bool isPrime(int n) { if (n <= 1) { return false; } if (n <= 3) { return true; } if (n % 2 == 0 || n % 3 == 0) { return false; } for (int i = 5; i * i <= n; i = i + 6) { if (n % i == 0 || n % (i + 2) == 0) { return false; } } return true; } void deleteNode(Node** head_ref, Node* del) { struct Node* temp = *head_ref; if (*head_ref == NULL || del == NULL) { return; } if (*head_ref == del) { *head_ref = del->next; } while (temp->next != del) { temp = temp->next; } temp->next = del->next; free(del); return; } void deletePrimeNodes(Node** head_ref) { Node* temp = *head_ref; Node* next; while (temp != NULL) { next = temp->next; if (isPrime(temp->data)) { deleteNode(head_ref, temp); } temp = next; } } void printLinkedList(Node* head) { while (head != NULL) { cout << head->data << " -> "; head = head->next; } } int main() { Node* head = NULL; insertNode(&head, 1); insertNode(&head, 2); insertNode(&head, 3); insertNode(&head, 4); insertNode(&head, 5); insertNode(&head, 6); cout << "删除前的链表:" << endl; printLinkedList(head); deletePrimeNodes(&head); cout << "\nLinked List after deletion:" << endl; printLinkedList(head); }输出结果
如果执行上述程序,则将得到以下结果。
删除前的链表: 6 -> 5 -> 4 -> 3 -> 2 -> 1 -> Linked List after deletion: 6 -> 4 -> 1 ->
如果您对本教程有任何疑问,请在评论部分中提及。