C语言单链表逆置
实现单链表的逆置。效果图:多的就不说了。代码如下:#include<stdio.h> #include<stdlib.h> typedefstructnode{ intdata; structnode*next; }Node; //创建链表 Node*CreatList(void) { intval,i,n; Node*phead,*p,*q; phead=NULL; printf("请输入您要...