链表节点类型如下: typedef char datatype; struct node { datatype data; struct node *next; };
编写程序实现单向链表的建立、读取和删除函数,在主函数中选择执行。
输入用例:
5abcde
输出用例:
The content of list:abcde
The content of list:null
编写程序实现单向链表的建立、读取和删除函数(语言-c语言)
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
3条回答 默认 最新
- CSDN专家-link 2022-04-22 09:31关注
读取就是链表内容显示?
#include <stdio.h> typedef char datatype; struct node { datatype data; struct node *next; }; struct node * listCreate(int n) { struct node * head, *p,*q; int i; head = (struct node*) malloc(sizeof(struct node)); head->next = NULL; p = head; for(i=0;i<n;i++) { q = (struct node*) malloc(sizeof(struct node)); scanf("%c",&q->data); q->next = NULL; p->next = q; p = q; } return head; } void showNode(struct node *head) { printf("The content of list:"); if(head == NULL || head->next == NULL) { printf("NULL\n"); return; } while(head->next != NULL) { printf("%c",head->next->data); head = head->next; } printf("\n"); } void clearList(struct node *head) { struct node *p = head,*q; while(p->next != NULL) { q = p->next; p->next = p->next->next; free(q); } } int main() { int n; struct node * head; scanf("%d",&n); head = listCreate(n); showNode(head); clearList(head); showNode(head); return 0; }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 3无用
悬赏问题
- ¥15 求高通平台Softsim调试经验
- ¥15 canal如何实现将mysql多张表(月表)采集入库到目标表中(一张表)?
- ¥15 wpf ScrollViewer实现冻结左侧宽度w范围内的视图
- ¥15 栅极驱动低侧烧毁MOSFET
- ¥30 写segy数据时出错3
- ¥100 linux下qt运行QCefView demo报错
- ¥50 F1C100S下的红外解码IR_RX驱动问题
- ¥20 基于matlab的航迹融合 航迹关联 航迹插补
- ¥15 用Matlab实现图中的光线追迹
- ¥15 联想笔记本开机出现系统更新界面