1/****************************************2>FileName:stack_test.cpp3>Author:xiaoxiaohui4>mail:1924224891@qq.com5>CreatedTime:2016年05月19日星期四21时01分44秒6****************************************/78#include<iostream>9usingnamespacestd1011voidprint(ListNode*phead)12{13stack<ListNode*>node;1415ListNode*tem=phead;16while(tem!=NULL)17{18node.push(tem);19tem=tem->m_pNext;20}2122while(!node.empty())23{24tem=node.top();25printf("%d",tem->m_nValue);26node.pop();27}28}





1/****************************************2>FileName:digui_test.c3>Author:xiaoxiaohui4>mail:1924224891@qq.com5>CreatedTime:2016年05月19日星期四20时48分02秒6****************************************/78#include<stdio.h>910voidprint(ListNode*phead)11{12ListNode*tem=phead;13if(tem==NULL)14{15return;16}17else18{19print(tem->m_pNext);20printf("%d",tem->m_nKey);21}22}