首页 技术 正文
技术 2022年11月11日
0 收藏 399 点赞 4,257 浏览 3582 个字

回文链表 牛客网 程序员面试金典  C++ Python

  • 题目描述
  • 请编写一个函数,检查链表是否为回文。
  • 给定一个链表ListNode* pHead,请返回一个bool,代表链表是否为回文。
  • 测试样例:
  • {1,2,3,2,1}
  • 返回:true
  • {1,2,3,2,3}
  • 返回:false
class Palindrome {
public:
// run:4ms memory:492k
bool isPalindrome(ListNode* pHead) {
if(NULL == pHead) return true;
if(NULL == pHead->next) return true;
if(NULL == pHead->next->next)
if(pHead->val == pHead->next->val) return true;
else return false;
bool ret = true;
ListNode* lastNode = NULL;
ListNode* nextNode = pHead->next;
ListNode* pSlow = pHead;
ListNode* pFast = pHead;
while(pFast && pFast->next){
pFast = pFast->next->next;
pSlow->next = lastNode;
lastNode = pSlow;
pSlow = nextNode;
nextNode = nextNode->next;
}
ListNode* lNode = lastNode;
ListNode* nNode = pSlow;
if (NULL == pFast)
if (pSlow->val != lastNode->val) ret = false;
else lastNode = lastNode->next;
while(lastNode){
if (lastNode->val != nextNode->val) {
ret = false;
break;
} lastNode = lastNode->next;
nextNode = nextNode->next;
}
while(lNode){
ListNode* tmp = lNode->next;
lNode->next = nNode;
nNode = lNode;
lNode = tmp;
}
return ret;
}// run:5ms memory:600k
bool isPalindrome2(ListNode* pHead) {
if(NULL == pHead) return true;
if(NULL == pHead->next) return true;
if(NULL == pHead->next->next)
if(pHead->val == pHead->next->val) return true;
else return false;
ListNode* lastNode = NULL;
ListNode* nextNode = pHead->next;
ListNode* pSlow = pHead;
ListNode* pFast = pHead;
while(pFast && pFast->next){
pFast = pFast->next->next;
pSlow->next = lastNode;
lastNode = pSlow;
pSlow = nextNode;
nextNode = nextNode->next;
}
if (NULL == pFast)
if (pSlow->val != lastNode->val) return false;
else lastNode = lastNode->next;
while(lastNode){
if (lastNode->val != nextNode->val) return false;
lastNode = lastNode->next;
nextNode = nextNode->next;
}
return true;
}// run:4ms memory:476k
bool isPalindrome3(ListNode* pHead) {
if(NULL == pHead) return true;
if(NULL == pHead->next) return true;
if(NULL == pHead->next->next)
if(pHead->val == pHead->next->val)
return true;
else return false;
ListNode* lastNode = NULL;
ListNode* nextNode = pHead->next;
ListNode* pSlow = pHead;
ListNode* pFast = pHead;
while(pFast && pFast->next){
pFast = pFast->next->next;
pSlow->next = lastNode;
lastNode = pSlow;
pSlow = nextNode;
nextNode = nextNode->next;
}
if (NULL == pFast){
if (pSlow->val != lastNode->val)
return false;
else{
lastNode = lastNode->next;
while(lastNode){
if (lastNode->val != nextNode->val)
return false;
lastNode = lastNode->next;
nextNode = nextNode->next;
}
}
}
if(NULL == pFast->next){
while(lastNode){
if (lastNode->val != nextNode->val)
return false;
lastNode = lastNode->next;
nextNode = nextNode->next;
}
}
return true;
}
};

Python

# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = Noneclass Palindrome:
# run:43ms memory:5732k
def isPalindrome(self, pHead):
if None == pHead: return True
if None == pHead.next: return True
if None == pHead.next.next:
if pHead.val == pHead.next.val: return True
else: return False
ret = True
lastNode = None
nextNode = pHead
pFast = pHead
pSlow = pHead
while pFast and pFast.next:
pFast = pFast.next.next
nextNode = pSlow.next
pSlow.next = lastNode
lastNode = pSlow
pSlow = nextNode
nextNode = nextNode.next
lNode = lastNode
nNode = pSlow
if None == pFast:
if pSlow.val != lastNode.val:ret = False
else:lastNode = lastNode.next
while lastNode and nextNode:
if lastNode.val != nextNode.val:
ret = False
lastNode = lastNode.next
nextNode = nextNode.next
while lNode:
tmp = lNode.next
lNode.next = nNode
nNode = lNode
lNode = tmp
return ret# run:34ms memory:5728k
def isPalindrome2(self, pHead):
if None == pHead: return True
if None == pHead.next: return True
if None == pHead.next.next:
if pHead.val == pHead.next.val: return True
else: return False
lastNode = None
nextNode = pHead
pFast = pHead
pSlow = pHead
while pFast and pFast.next:
pFast = pFast.next.next
nextNode = pSlow.next
pSlow.next = lastNode
lastNode = pSlow
pSlow = nextNode
nextNode = nextNode.next
if None == pFast:
if pSlow.val != lastNode.val:return False
else:lastNode = lastNode.next
while lastNode:
if lastNode.val != nextNode.val:return False
lastNode = lastNode.next
nextNode = nextNode.next
return True
相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,492
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,907
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,740
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,493
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:8,132
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:5,295