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

剑指offer---尾到头打印链表

时间:2017-07-30 23:41:20      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:cto   code   log   str   off   vector   null   span   blog   

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) {
*        }
*  };
*/
class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head)
    {
        int jiediangeshu = 0;
        ListNode* cur = head;
        vector<int> re;
        while (cur != NULL)
        {
            ++jiediangeshu;
            cur = cur->next;
        }

        for (int i = (jiediangeshu - 1); i >= 0; --i)
        {
            ListNode* temp = head;
            int x=i;
            while (x>0)
            {
                temp = temp->next;
                --x;
            }

            re.push_back(temp->val);
        }

        return re;

    }
};

 

剑指offer---尾到头打印链表

标签:cto   code   log   str   off   vector   null   span   blog   

原文地址:http://www.cnblogs.com/159269lzm/p/7260671.html

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