创新互联专注于掇刀网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供掇刀营销型网站建设,掇刀网站制作、掇刀网页设计、掇刀网站官网定制、微信小程序服务,打造掇刀网络公司原创品牌,更为您提供掇刀网站排名全网营销落地服务。
1 /**************************************** 2 > File Name:stack_test.cpp 3 > Author:xiaoxiaohui 4 > mail:1924224891@qq.com 5 > Created Time:2016年05月19日 星期四 21时01分44秒 6 ****************************************/ 7 8 #include9 using namespace std 10 11 void print(ListNode* phead) 12 { 13 stack node; 14 15 ListNode* tem = phead; 16 while(tem != NULL) 17 { 18 node.push(tem); 19 tem = tem->m_pNext; 20 } 21 22 while(!node.empty()) 23 { 24 tem = node.top(); 25 printf("%d ", tem->m_nValue); 26 node.pop(); 27 } 28 }
1 /**************************************** 2 > File Name:digui_test.c 3 > Author:xiaoxiaohui 4 > mail:1924224891@qq.com 5 > Created Time:2016年05月19日 星期四 20时48分02秒 6 ****************************************/ 7 8 #include9 10 void print(ListNode* phead) 11 { 12 ListNode* tem = phead; 13 if(tem == NULL) 14 { 15 return; 16 } 17 else 18 { 19 print(tem->m_pNext); 20 printf("%d ",tem->m_nKey); 21 } 22 }