已知一个带头结点的单链表L,其结点数据为整型,请给出用C语言描述的该链表的数据结构定义,并编写算法删除链表L中所有的数据为奇数的结点,并输
出删除后链表的所有数据。
考研数据结构算法设计题 链表算法设计题
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- CSDN专家-天际的海浪 2021-11-06 03:26关注
你题目的解答代码如下:
#include <stdio.h> #include <stdlib.h> struct Data { int numb; struct Data *next; }; void creat(struct Data *pHead) { int count = 1; struct Data *p, *t; pHead->next = NULL; p = pHead; while (count<10) { t = (struct Data *)malloc(sizeof(struct Data)); t->numb = count; t->next = NULL; p->next = t; p = t; count++; } } void del(struct Data *pHead) { struct Data *q, *p = pHead; while (p->next != NULL) { q = p; p = p->next; if (p->numb%2==1) { printf("删除 %d\n", p->numb); q->next = p->next; p = q; } } } void print(struct Data *pHead) { struct Data *p = pHead; while (p->next != NULL) { p = p->next; printf("%d ", p->numb); } printf("\n"); } int main() { struct Data *pHead = (struct Data *)malloc(sizeof(struct Data)); creat(pHead); print(pHead); del(pHead); print(pHead); return 0; }
如有帮助,望采纳!谢谢!
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 2无用
悬赏问题
- ¥15 汇川EASY521plc电子凸轮
- ¥15 C++ 如何判断设置快捷键来实现隐藏/显示窗口
- ¥15 关于#材料工程#的问题:有没有具有电子阻挡层和空穴阻挡层的电池仿真silvaco代码例子或者其他器件具有阻挡层例子的silvaco代码(最好还有相关文献)
- ¥60 基于MATLAB的TAOD算法
- ¥15 Groimp使用疑问
- ¥15 MDK–ARM里一直找不到调试器
- ¥15 oracle中sql查询问题
- ¥15 vue使用gojs3.0版本,在nodeDataArray中的iconSrc使用gif本地路径,展示出来后动画是静态的,不是动态的
- ¥100 代写个MATLAB代码,有偿
- ¥15 ansys electronics 2021 R1安装报错,错误代码2,如图