将链表的结构逆序、将链表以逆序的形式输出

前端之家收集整理的这篇文章主要介绍了将链表的结构逆序、将链表以逆序的形式输出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.将链表逆序:

List Traverse_List(List head)  //链表的逆序(结构上逆序)
{
	ListNode *cur=head;//cur表示当前节点
	ListNode *pre=NULL;//pre表示当前节点的直接前驱节点
	ListNode *traverse_head;//逆序后的头结点
	while(cur->next!=NULL)
	{
		ListNode *temp=cur->next;
		cur->next=pre;
		pre=cur;
		cur=temp;
	}
	cur->next=pre;
	traverse_head=cur;
	return traverse_head;
}

2.链表以逆序的形式输出
void Traverse_Print(List head)//链表以逆序的形式输出
{
	if(head==NULL)
		return ;
	Traverse_Print(head->next);
	cout<<head->item<<" ";
}
原文链接:https://www.f2er.com/javaschema/285368.html

猜你在找的设计模式相关文章