剑指offer---03---从尾到头打印链表---链表

题意
 
分析
 
代码
import java.util.*;
public class Solution{
    public ArrayList<Integer> printListFromTailToHead(ListNode listNode) {
        ArrayList<Integer> array = new ArrayList<Integer>();
        if(listNode == null)return array;
        Stack<Integer> stack = new Stack<Integer>();
        while(listNode!=null){
            stack.push(listNode.val);
            listNode = listNode.next;
        }
        while(!stack.isEmpty()){
            array.add(stack.pop());
        }
        return array;
    }
}
posted @ 2018-07-27 12:24  buptyuhanwen  阅读(92)  评论(0编辑  收藏  举报