码迷,mamicode.com
首页 > 其他好文 > 详细

【OJ】打印链表

时间:2017-05-16 23:23:13      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:算法   oj   

/*
输入一个链表,从尾到头打印链表每个节点的值。
*/

#include <iostream>
#include <vector>

using std::cout;
using std::endl;
using std::vector;

struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) :
        val(x), next(NULL) {
    }
};

class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        vector<int> vec_1;
        vector<int> vec_2;
        ListNode *pCurrent = head;
        while (pCurrent != NULL){
            vec_1.push_back(pCurrent->val);
            pCurrent = pCurrent->next;
        }
        
        while (!vec_1.empty()){
            vec_2.push_back(vec_1.back());
            vec_1.pop_back();
        }
        return vec_2;
    }
};

void foo()
{
    ListNode l1(67);
    ListNode l2(0);
    ListNode l3(33);
    ListNode l4(6);
    l1.next = &l2;
    l2.next = &l3;
    l3.next = &l4;
    Solution sol;
    sol.printListFromTailToHead(&l1);

}

int main()
{
    foo();
    return EXIT_SUCCESS;
}


【OJ】打印链表

标签:算法   oj   

原文地址:http://siliconmaigc.blog.51cto.com/12904785/1926422

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!