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

牛客网-《剑指offer》-从尾到头打印链表

时间:2016-01-07 18:00:21      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:

C++

 1 /**
 2 *  struct ListNode {
 3 *        int val;
 4 *        struct ListNode *next;
 5 *        ListNode(int x) :
 6 *              val(x), next(NULL) {
 7 *        }
 8 *  };
 9 */
10 class Solution {
11 public:
12     vector<int> printListFromTailToHead(struct ListNode* head) {
13         vector<int> res;
14         vector<int>::iterator it;
15         ListNode *idx = head;
16         while (idx) {
17             it = res.begin();
18             res.insert(it, idx->val);
19             idx = idx->next;
20         }
21         return res;
22     }
23 };

 

牛客网-《剑指offer》-从尾到头打印链表

标签:

原文地址:http://www.cnblogs.com/CheeseZH/p/5110551.html

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