码迷,mamicode.com
首页 > 其他好文 > 详细

链表反向输出

时间:2014-09-26 11:42:08      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:des   blog   div   c   log   ad   r   as   tt   

struct ListNode {
	int m_nKey;
	ListNode *m_pNext;
};

void printListReversingly(ListNode *pHead) {
	stack<ListNode*> nodes;
	ListNode *pNode = pHead;
	while (pNode != NULL) {
		nodes.push(pNode);
		pNode = pNode->m_pNext;
	}

	while (!nodes.empty()) {
		pNode = nodes.top();
		printf("%d\t", pNode->m_nKey);
		nodes.pop();
	}
}

  

链表反向输出

标签:des   blog   div   c   log   ad   r   as   tt   

原文地址:http://www.cnblogs.com/baisu/p/3994163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!