# 面试题06

输入一个链表的头节点，从尾到头反过来返回每个节点的值（用数组返回）。

```
示例 1：

输入：head = [1,3,2]
输出：[2,3,1]
```

## 限制：

* 0 <= 链表长度 <= 10000

## Solutions

1. **recursion(system stack)**

```cpp
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    vector<int> res;
    void traverse(ListNode * head) {
        if (!head) return;
        traverse(head->next);
        res.push_back(head->val);
    }

    vector<int> reversePrint(ListNode* head) {
        traverse(head);
        return res;
    }
};
```

1. **reverse**

```cpp
class Solution {
public:
    vector<int> reversePrint(ListNode* head) {
        vector<int> res;
        while (head) {
            res.push_back(head->val);
            head = head->next;
        }

        reverse(res.begin(), res.end());

        return res;
    }
};
```

1. **reverse assignment**

```cpp
class Solution {
public:
    vector<int> reversePrint(ListNode* head) {
        int len = 0;
        ListNode * tmp = head;
        while (tmp) {
            len++;
            tmp = tmp->next;
        }
        vector<int> res(len);

        while (head) {
            res[--len] = head->val;
            head = head->next;
        }

        return res;
    }
};
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://zhongquan789.gitbook.io/leetcode/lcof/mian-shi-ti-06.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
