标签:style blog color io div log sp new size
题目:定义一个函数,输入一个链表的头结点,反转该链表并输出反正后链表的头结点。
#include<stdio.h> #include<malloc.h> typedef struct node { int Element; struct node *Link; }Node; Node *ReverseList(Node *first) { Node *NewFirst,*p; if(first==NULL||first->Link==NULL) { return first; } NewFirst=first; while(first->Link!=NULL) { p=first->Link; first->Link=p->Link; p->Link=NewFirst; NewFirst=p; } return NewFirst; } void main() { int i=0; Node *p,*q,*first=NULL; while(i<10) { p=(Node*)malloc(sizeof(Node)); p->Element=i; if(!first) { first=p; first->Link=NULL; } else { p->Link=first; first=p; } i++; } q=first; while(q) { printf("%d,",q->Element); q=q->Link; } printf("\n"); p=ReverseList(first); while(p!=NULL) { printf("%d,",p->Element); p=p->Link; } }
标签:style blog color io div log sp new size
原文地址:http://www.cnblogs.com/rolly-yan/p/3935077.html