链表的逆置(递归)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了链表的逆置(递归)相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
#include<stdlib.h>
#define N 9
typedef struct node{
   int  data;
   struct node * next;
}ElemSN;
ElemSN  * Createlink(int a[],int n)
   {  int i;
   ElemSN * h=NULL, * p;
     for( i=N-1;i>=0;i--)
	 {
      p=(ElemSN *)malloc(sizeof(ElemSN));
	  p->data =a[i];
	  p->next=h;
	  h=p;
	 }
	 return h;
   }

ElemSN* In_reverseList(ElemSN* H)
{
	 ElemSN * newHead ;
    if (H == NULL || H->next == NULL)       //链表为空直接返回,而H->next为空是递归基
        return H;
    newHead = In_reverseList(H->next);        //一直循环到链尾 
    H->next->next = H;                       //翻转链表的指向
    H->next = NULL;                          //记得赋值NULL,防止链表错乱
    return newHead;                          //新链表头永远指向的是原链表的链尾
}
   void printlink(ElemSN * h)
   {
   ElemSN * p;
   for(p=h;p;p=p->next)
	   printf("%d
",p->data);
   }
    int main(void)
	{
		int a[N]={1,2,3,4,5,6,7,8,9};
	ElemSN * head;
    head=Createlink(a,9);
	printlink(In_reverseList(head));
	}


以上是关于链表的逆置(递归)的主要内容,如果未能解决你的问题,请参考以下文章

单链表的逆置使用递归算法出现-842150451这个值,请求高手予以解决。。

数据结构实验之链表三:链表的逆置

链表的逆置

双向链表的逆置(两种)

C++程序设计 编写程序实现单链表逆置功能。

单向链表的逆置