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

6. 从尾到头打印链表[java]

时间:2019-07-17 20:45:16      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:integer   page   null   lan   view   题解   list   pid   链表反转   

题目描述 在线编程

从尾到头反过来打印出每个结点的值

 

题解

头插法可将链表反转

/**
*    public class ListNode {
*        int val;
*        ListNode next = null;
*
*        ListNode(int val) {
*            this.val = val;
*        }
*    }
*
*/
import java.util.ArrayList;
public class Solution {
    public ArrayList<Integer> printListFromTailToHead(ListNode listNode) {
       ArrayList<Integer> ret=new ArrayList<>();
       ListNode dummy=new ListNode(-1);
       ListNode cur=listNode;
        while(cur!=null){
            ListNode next=cur.next;
            cur.next=dummy.next;
            dummy.next=cur;
            
            cur=next;
        }
        cur=dummy.next;
        while(cur!=null){
           ret.add(cur.val);
            cur=cur.next;
        }
        return ret;
    }
}

 

6. 从尾到头打印链表[java]

标签:integer   page   null   lan   view   题解   list   pid   链表反转   

原文地址:https://www.cnblogs.com/zslhg903/p/11203295.html

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