JZ6 从尾到头打印链表

JZ6 从尾到头打印链表

题目链接

从尾到头打印链表_牛客题霸_牛客网 (nowcoder.com)

完整代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* struct ListNode {
* int val;
* struct ListNode *next;
* ListNode(int x) :
* val(x), next(NULL) {
* }
* };
*/
class Solution {
public:
vector<int> printListFromTailToHead(ListNode* head) {
vector<int> s;
while (head!=NULL) {
s.insert(s.begin(),head->val); //利用迭代器头插
head=head->next;
}
return s;
}
};


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!