用栈能很easy的解决,直接贴代码:
struct ListNode{ int m_nValue; ListNode *m_pNext; };
void PrintListRevers(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_nValue); nodes.pop(); } }
时间: 2024-10-01 13:44:05