#include<stdio.h> #include<stdlib.h> typedef struct Node{ int data; struct Node* next; }Node; void AddAtEnd(Node**head, int data){ Node* new_node = (Node*)malloc(sizeof(Node)); new_node->data = data; new_node->next = NULL; if(*head ==NULL) { *head = new_node; return; } Node* cur = *head; while(cur->next!=NULL) { cur = cur->next; } cur->next = new_node; } void deleteNode(Node** head,int a){ if(*head == NULL) return; //链表为空无需删除 else if((*head)->next == NULL&&(*head)->data == a)//光棍头节点恰好被全删了 { *head = NULL; return; } Node* cur = *head; Node* prev = NULL; while(cur->next!=NULL) { prev = cur; cur = cur->next; if(cur->data == a) { prev->next = cur->next; return; } } } void showNode(Node* head){ if(head == NULL) { printf("空链表!"); return; } Node* cur = head; while(cur!=NULL) { printf("%d ",cur->data); cur = cur->next; //cur肯定非空,如果cur是最后一个,这句就会给cur赋值NULL,下一轮就不会继续循环了 } printf("\n"); } int main(){ int n,n1,m; Node* head = NULL; scanf("%d",&n); n1=n; while (n--) { scanf("%d",&m); AddAtEnd(&head,m); } int a; scanf("%d",&a); while(n1--) deleteNode(&head,a); showNode(head); return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.5 (C++代码)浏览:778 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:400 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:584 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:900 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:624 |
WU-蓝桥杯算法提高VIP-交换Easy (C++代码)浏览:1186 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:636 |
最小公倍数 (C语言代码)浏览:1108 |
1017题解浏览:663 |
数组输出 (C语言代码)浏览:749 |