- 博客(1)
- 收藏
- 关注
原创 利用链表实现的多项式加法(C语言)
多项式加法 数据结构的上课作业,想记录一下。 构建结构体、创建链表、相加函数、输出格式、主函数 # include <stdio.h> # include <stdlib.h>//malloc typedef struct n { int x;//系数 int z;//指数 struct n *next;//链表 struct {int x;int z;}*next; }n; n* Create()//创建一元多项式链表 { n *head,
2021-04-04 15:24:52
657
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅