循環單鏈表的創建和輸出

#include <stdio.h> #include <malloc.h> typedef struct Node { int data; struct Node *next; }LNode,*LinkList; LNode *CreateList() { // 建立單循環鏈表,返回鏈表頭 LNode *head,*p; int i,n; printf("請輸
相關文章
相關標籤/搜索