單鏈表的轉置

#include <stdio.h> #include <malloc.h> typedef struct Node { int data; struct Node *next; }SList; SList * creat(int a[],int l)/*按照一個數組中的內容初始化鏈表*/ { int j; SList *h,*p,*e; h=(SList*)malloc(si
相關文章
相關標籤/搜索