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