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

从尾到头打印链表

时间:2019-04-14 16:01:58      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:array   尾到头   nullptr   null   node   next   tail   int   void   

题目描述

输入一个链表,按链表值从尾到头的顺序返回一个ArrayList。

分析:水题,直接递归打印即可。

void printListFromTailToHead(ListNode* head) {
        if(head != nullptr){
            if(head->next != nullptr){
                printListFromTailToHead(head->next);
            }
            printf("%d ", head->val);
        }
}

从尾到头打印链表

标签:array   尾到头   nullptr   null   node   next   tail   int   void   

原文地址:https://www.cnblogs.com/Mered1th/p/10705366.html

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