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

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

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

import java.util.*;

/*

  • public class ListNode {
  • int val;
  • ListNode next = null;
  • } */

public class Solution {

//利用栈FILO的特性,完成回文判断

public boolean isPail (ListNode head) {
    // write code here
    Stack<Integer> tempStack = new Stack<>();
    ListNode tmpNode = head;
    while(tmpNode != null){
        tempStack.push(tmpNode.val);
        tmpNode = tmpNode.next;
    }
    while(head != null){
        if(head.val != tempStack.pop()){
            return false;
        }
        head = head.next;
    }
    return true;
}

}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-24 20:55
阿里国际 Java工程师 2.7k*16.0
程序员猪皮:没有超过3k的,不太好选。春招再看看
点赞 评论 收藏
分享
牛客771574427号:恭喜你,华杰
点赞 评论 收藏
分享
美团 后端开发 总包n(15%是股票)
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务