您好,登錄后才能下訂單哦!
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 #include<iostream> 9 using namespace std 10 11 void print(ListNode* phead) 12 { 13 stack<ListNode*> 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 #include<stdio.h> 9 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 }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。