摘要:
//包括建立链表的creat(); 输出连标的print(), 删除链表中结点的delete();#include#include#define LEN sizeof(struct student)struct student{ long num; float score; str... 阅读全文
摘要:
#include<stdio.h> typedef struct Student { int a; struct Student *next; }Pupil; int main() { Student ss; //这里会显示未定义, 所以Student只是在结构体里面做指针用的。 一般情况下 Stu 阅读全文
摘要:
下面说线性结构,线性结构是数据结构中最基础最简单的一种结构类型 其中典型的是线性表线性表:举一个列子 下面有一个一元多项式F(x)=a0+a1*x+a2*x+~~~~~~~+an*x;请你思考并给出,你所能想到的几种储存方式.1: 用一个数组将其系数储存起来,然后用for循环这样... 阅读全文