标签:ext class 函数调用 从尾到头打印链表 递归 from stack result pre
/** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : * val(x), next(NULL) { * } * }; */ class Solution { public: vector<int> printListFromTailToHead(ListNode* head) { ListNode * Node=head; stack<int> s; vector<int> result; if(head==NULL)//链表为空 return result; while(Node!=NULL)//循环到最后节点 { s.push(Node->val); Node=Node->next;//向后遍历 } while(!s.empty()) { result.push_back(s.top()); s.pop(); } return result; } };
标签:ext class 函数调用 从尾到头打印链表 递归 from stack result pre
原文地址:https://www.cnblogs.com/cgy1012/p/11366639.html