码迷,mamicode.com
首页 > 其他好文 > 详细

234. Palindrome Linked List

时间:2019-05-31 19:59:07      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:follow   output   could   rom   相同   input   ace   NPU   部分   

Given a singly linked list, determine if it is a palindrome.

Example 1:

Input: 1->2
Output: false

Example 2:

Input: 1->2->2->1
Output: true

Follow up:
Could you do it in O(n) time and O(1) space?


(1)定义快慢指针得到链表的中点 (2)将后半部分逆序 (3)从头节点和中点开始比较是否相同

234. Palindrome Linked List

标签:follow   output   could   rom   相同   input   ace   NPU   部分   

原文地址:https://www.cnblogs.com/clarencezzh/p/10957034.html

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