單向鏈表基本操做

/* * 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
相關文章
相關標籤/搜索