摘要: #include<stdio.h>#include<malloc.h> //节点的表示typedef struct Node{ int data; struct Node *pNext;}NODE,*PNODE;//NODE相当于struct Node,PNODE相当于struct Node * i 阅读全文
posted @ 2019-10-12 23:08 包莹莹 阅读(571) 评论(0) 推荐(0) 编辑
摘要: /* 2019年10月12日19:25:25 说明:typedef在结构体中的应用*/#include<stdio.h> typedef struct Student{ char name[9]; int age;}STU,*PSTU; //STU相当于struct Student,PSTU相当于s 阅读全文
posted @ 2019-10-12 19:27 包莹莹 阅读(1744) 评论(0) 推荐(0) 编辑