从尾到头打印链表

你快乐吗?

Posted by bbkgl on September 26, 2019

从尾到头打印链表


倒序打印链表,第一反应就是用栈了。可是想到万一不让用呢?所以递归应该是更好的办法。。。

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) {
*        }
*  };
*/
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        vector<int> ans;
        if (head) dfs(head, ans);
        return ans;
    }
    
    void dfs(ListNode *node, vector<int> &ans) {
        if (node->next) dfs(node->next, ans);
        ans.push_back(node->val);
    }
};