欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

剑指offer:从尾到头打印链表

程序员文章站 2022-05-06 10:08:45
...

剑指offer:从尾到头打印链表

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) {
*        }
*  };
*/
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        vector<int> value;
        value.clear();
        if(head)
        {
            value.insert(value.begin(), head -> val);
            while(head -> next)
            {
                value.insert(value.begin(), head -> next -> val);
                head = head -> next;
            }
        }
        return value;
    }
};
相关标签: C++ offer