单向链表基本操做

/* * link.c */#include <stdio.h>#include <stdlib.h>#include <malloc.h>#define NULL 0#define LEN sizeof(struct student)struct student { long num; float score; struct student *next;};//节点数int n;int main
相关文章
相关标签/搜索