单链表倒置

#include <stdlib.h>
#include <stdio.h>

struct Node
{
	int  iValue;
	struct Node* pNext;
};

typedef struct Node Node;

Node* RevList( Node* pHeader )
{
	if( !pHeader )
		return NULL;

	Node* pRes = pHeader;//保存结果

	Node* pCur = pHeader;//当前处理节点
	Node* pNext = pHeader->pNext;//下一节点
	pRes->pNext = NULL;//首节点下一节点置空

	//算法如下:取当前节点保存其后续节点 断开当前节点到结果链表的首部 
	while( pNext )
	{
		pCur = pNext;

		pHeader = pNext->pNext;

		pCur->pNext = pRes;

		pNext = pHeader;
		
		pRes = pCur;
	}

	return pRes;
}

void PrintList( Node* const pHeader )
{
	Node* pCur = pHeader;

	while( pCur )
	{
		printf( "%d ",pCur->iValue );
		pCur = pCur->pNext;
	}

	puts( "" );
}


int main( int argc,char** argv )
{
	Node* pHeader = (Node*)malloc( sizeof( Node ) );
	Node* pCur = pHeader;
	pCur->iValue = 1;

	pCur->pNext = (Node*)malloc( sizeof( Node ) );
	pCur = pCur->pNext;
	pCur->iValue = 2;

	pCur->pNext = (Node*)malloc( sizeof( Node ) );
	pCur = pCur->pNext;
	pCur->iValue = 3;
	pCur->pNext = NULL;

	PrintList( pHeader );

	pHeader = RevList( pHeader );

	PrintList( pHeader );

	puts( "" );

	return 0;
}

相关文章

什么是设计模式一套被反复使用、多数人知晓的、经过分类编目...
单一职责原则定义(Single Responsibility Principle,SRP)...
动态代理和CGLib代理分不清吗,看看这篇文章,写的非常好,强...
适配器模式将一个类的接口转换成客户期望的另一个接口,使得...
策略模式定义了一系列算法族,并封装在类中,它们之间可以互...
设计模式讲的是如何编写可扩展、可维护、可读的高质量代码,...