山东理工大学计算机学院课 程 设 计(数据结构)班 级姓 名学 号 指导教师二○一二年一月十日课程设计任务书及成绩评定课题名称顺序结构动态链表结构下的一元多项式的加法减法乘法的实现Ⅰ题目的目的和要求: 1. 巩固和加深对数据结构的理解通过上机实验调试程序加深对课本知识的理解最终使学生能够熟练应用数据结构的知识写程序1)通过本课程的学习能熟练掌握几种基本数据结构的基本操作
include<stdio.h> include<stdlib.h>include<malloc.h>define LEN sizeof(struct student)struct student{int numfloat scorestruct student next}void main() 主函数{struct student creat(void)建立一个动态链表struct stu