题解 | #判断一个链表是否为回文结构#

判断一个链表是否为回文结构

http://www.nowcoder.com/practice/3fed228444e740c8be66232ce8b87c2f

import java.util.*;

public class Solution {

    public boolean isPail (ListNode head) {
        // write code here
        Stack <ListNode> st = new Stack<>();
        int length = 0;
        ListNode temp = head;
        while(temp!=null){
            st.push(temp);
            length++;
            temp=temp.next;
        }
        length = length/2;
        
        for (int i=0;i<length;i++){
            if(st.pop().val!=head.val){
                return false;
            }
            head = head.next;
        }
        return true;
    }
}
全部评论

相关推荐

拉丁是我干掉的:把上海理工大学改成北京理工大学。成功率增加200%
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务