全部评论
public class Solution { ArrayList<Integer> arrayList = new ArrayList<Integer>(); public ArrayList<Integer> printListFromTailToHead(ListNode listNode) { if(listNode!=null){ this.printListFromTailToHead(listNode.next); //递归的目的是让add倒序执行 arrayList.add(listNode.val); } return arrayList; } }
点赞 回复 分享
发布于 2021-04-14 16:20
public class Solution { ArrayList<Integer> resultArray = new ArrayList<>(); public ArrayList<Integer> printListFromTailToHead(ListNode listNode) { Stack<Integer> s = new Stack<Integer>(); ListNode p = listNode; while(p != null) { s.push(p.val); p = p.next; } while (!s.empty()) { resultArray.add(s.pop()); //利用栈的特性 } return resultArray; } }
点赞 回复 分享
发布于 2021-04-14 16:26

相关推荐

牛客279957775号:铁暗恋
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务