Leetcode 回文链表
本文最后更新于:2023年2月8日 晚上
地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/6/linked-list/45/
题目
请判断一个链表是否为回文链表。
示例 1:
输入: 1->2
输出: false
示例 2:
输入: 1->2->2->1
输出: true
进阶:
你能否用 O(n) 时间复杂度和 O(1) 空间复杂度解决此题?
我的解决方案
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
bool isPalindrome(ListNode* head) {
ListNode *newHead = NULL; //新建一个链表,将原链表反转
ListNode *cur = head;
while (cur != NULL) //保留原链表的情况下将原链表反转
{
ListNode *temp = newHead;
newHead = new ListNode(cur->val);
newHead->next = temp;
cur = cur->next;
}
while (head != NULL) //原链表和反转链表逐个检点对比
{
if (head->val != newHead->val) //一旦对应结点不相等,则说明不是回文联表,返回false
return false;
head = head->next;
newHead = newHead->next;
}
return true; //默认返回true
}
};
Leetcode 回文链表
https://mxy493.xyz/2019030426598/