链表的倒序输出

链表的倒序输出,我们可能想到的方法就是把链表翻转后然后再遍历一遍,这种话时间复杂度是O(n),可是缺点是代码略微复杂。

或者是开辟一个数组,顺序遍历一个链表把元素拷贝到数组里面,最后再把数组倒序输出。事实上这道题目时间复杂度都不可能低于O(n),可是考虑用栈的话代码就可能很easy,代码例如以下所看到的:

#include <iostream>
using namespace std;

struct Node
{
	int key;
	Node* next;
};

Node* createList(int arr[],int nLength);
void printList(Node* head);
void reversePrint(Node* head);
void clearList(Node* head);

void main()
{
	int arr[] = {1,3,5,7,9};
	int nLength = sizeof(arr)/sizeof(arr[0]);
	Node* head = createList(arr,nLength);
	printList(head);
	reversePrint(head);
	clearList(head);
}

Node* createList(int arr[],int nLength)
{
	Node* head = new Node;
	head->key = arr[0];
	head->next = NULL;
	Node *p = head;
	for(int i=1;i<nLength;i++)
	{
		Node* ptr = new Node;
		ptr->key = arr[i];
		ptr->next = NULL;
		p->next = ptr;
		p = p->next;
	}
	return head;
}


void printList(Node* head)
{
	Node* p = head;
	while( p!= NULL )
	{
		cout<<p->key<<endl;
		p=p->next;
	}
}

void clearList(Node* head)
{
	Node* p = head;
	Node* ptr;
	while( p!= NULL )
	{
		ptr = p->next;
		delete p;
		p = ptr;
	}
}

void reversePrint(Node* head)
{
	if( head != NULL )
	{
		if( head->next != NULL )
			reversePrint(head->next);
	}
	cout<<head->key<<endl;
}


转载于:https://www.cnblogs.com/mfmdaoyou/p/6871844.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值