循環鏈表的創建

#include<stdio.h> #include<stdlib.h> typedef struct student { int data; struct student *next; }STU; STU *creatnew() { STU *p; p=(STU*)malloc(sizeof(STU)); p->next=p; } STU *creat_list(STU *h
相關文章
相關標籤/搜索