摘要:
#include #include #include #include #include #include #define len sizeof(struct student) using namespace std; struct student { long num; float score; struct student *next; ... 阅读全文
摘要:
#include#includeusing namespace std; //擦 ,好像 忘了这个东西..void inv (int x[],int n);//形参 接收数组的方法....int main(){ int a[100],n,i,j; while(scanf("%d... 阅读全文
摘要:
现在处于一种 指针不熟 链表不会的状态.....先附上一个 书上的输入代码再说.........汗,先存起来 去看指针吧.....#include#include#define len sizeof(struct student)//宏定义 len为 结构体的长度struct student... 阅读全文