码迷,mamicode.com
首页 > 编程语言 > 详细

【算法编程 C++ python】单链表反序输出

时间:2018-04-30 23:27:40      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:功能   一个   节点   item   struct   从尾到头打印链表   begin   lis   print   

题目描述

输入一个链表,从尾到头打印链表每个节点的值。
 
以下方法仅仅实现了功能,未必最佳。在牛客网测试,
C++:3ms 480k
Python:23ms 5732k
/**
*  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_output;
        if (head == NULL){return vec_output;}
        do{
            vec_output.push_back(head->val);
            head = head->next;
        }while(head!=NULL);
        reverse(vec_output.begin(),vec_output.end());
        return vec_output;
    }
};

Python:

# -*- coding:utf-8 -*-
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    # 返回从尾部到头部的列表值序列,例如[1,2,3]
    def printListFromTailToHead(self, listNode):
        list_val = []
        while(True):
            if listNode == None: return [] 
            list_val.append(listNode.val)
            if (listNode.next):
                listNode = listNode.next
            else:
                break
        return list_val[::-1] 

 

【算法编程 C++ python】单链表反序输出

标签:功能   一个   节点   item   struct   从尾到头打印链表   begin   lis   print   

原文地址:https://www.cnblogs.com/xiangfeidemengzhu/p/8975034.html

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