单链表的转置

#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
相关文章
相关标签/搜索