05_从尾到头打印链表

#include <iostream> 
#include <vector>
using namespace std;


typedef struct ListNode {
	int data;
	struct ListNode * next;
	ListNode(int d) : data(d), next(NULL){}
};

ListNode *initList() {
	
	ListNode * head = NULL;
	ListNode * p = NULL;
	int number = 10;
	int i = 0;
	head = new ListNode(0);
	p = head;
	for	(i = 1; i < number; i++) {
		p->next = new ListNode(i);
		p = p->next;
	}
	return head;
	
} 

void printList(ListNode *head) {
	
	ListNode * p = head;
	if (!head){
		return;
	}
	while (p && p->next) {
		cout<<p->data<<"->";
		p = p->next; 
	}
	if (p) {
		cout<<p->data<<endl;
	}
	
}

//using vector to store the ListNode->data, and print it from the end to start
void reversePrintListUsingVector(ListNode *head){
	vector <int> vec;
	if(!head) {
		return;
	}
	ListNode *p = head;
	while (p) {
		vec.push_back(p->data);
		p = p->next;
	}
	for (vector<int>::size_type i = vec.size() - 1; i > 0; i--) {	
		cout<<vec[i]<<"->";				
	}
	cout<<vec[0]<<endl;
	
} 

//change the ListNode:delete the head->next and insert the deleted node after the newHead;
ListNode *reversePrintList(ListNode *head){
	
	if(!head) {
		return NULL;
	}
	
	
	ListNode *deletedNode = head;
	ListNode *oldHead = head;
	
	ListNode *tempHead = new ListNode(0);

	while(oldHead) {
		deletedNode = oldHead; 
		oldHead = oldHead->next;		
		deletedNode->next = tempHead->next;
		tempHead->next = deletedNode;
	}
	
	ListNode * reserverdhead = tempHead->next;
	delete tempHead; 

	return reserverdhead; 
	
} 


void main(){ 

/********In the first way, the List was not changed, but we need a vector to store the list*************/
	ListNode * head = initList();
	cout<<"initial List:"<<endl;
	printList(head);
	
	cout<<"the first way to reverse the List:"<<endl;
	reversePrintListUsingVector(head);

/********In the second way, the List was changed and we need to new a listNode*************/
	cout<<endl;
	cout<<"initial List:"<<endl;
	printList(head);
	cout<<"the second way to reverse the List:"<<endl;	
	head = reversePrintList(head);
	printList(head);
	

	
	
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值