C語言-數據結構-單鏈表倒置

/*#include <stdio.h> #include <stdlib.h> //單鏈表倒置 typedef struct node {     int data;     struct node *next; }body; body *table() {     int i,a;     body *head,*p1,*p2;     head=NULL;     for(i=0;;i++)
相關文章
相關標籤/搜索