回文链表 牛客网 程序员面试金典  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 = None class 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

回文链表 牛客网 程序员面试金典 C++ Python的更多相关文章

  1. 链表分割 牛客网 程序员面试金典 C++ Python

    链表分割 牛客网 程序员面试金典 C++ Python 题目描述 编写代码,以给定值x为基准将链表分割成两部分,所有小于x的结点排在大于或等于x的结点之前 给定一个链表的头指针 ListNode* p ...

  2. 链表中倒数第K个结点 牛客网 程序员面试金典 C++ Python

    链表中倒数第K个结点 牛客网 程序员面试金典 C++ Python 题目描述 输入一个链表,输出该链表中倒数第k个结点. C++ /* struct ListNode { int val; struc ...

  3. 链式A+B 牛客网 程序员面试金典 C++ Python

    链式A+B 牛客网 程序员面试金典 C++ Python 题目描述 有两个用链表表示的整数,每个结点包含一个数位.这些数位是反向存放的,也就是个位排在链表的首部.编写函数对这两个整数求和,并用链表形式 ...

  4. 输出单层结点 牛客网 程序员面试金典 C++ Python

    输出单层结点 牛客网 程序员面试金典 C++ Python 题目描述 对于一棵二叉树,请设计一个算法,创建含有某一深度上所有结点的链表. 给定二叉树的根结点指针TreeNode* root,以及链表上 ...

  5. 访问单个结点的删除 牛客网 程序员面试金典 C++ Python

    访问单个结点的删除 牛客网 程序员面试金典 C++ Python 题目描述 实现一个算法,删除单向链表中间的某个结点,假定你只能访问该结点. 给定待删除的节点,请执行删除操作,若该节点为尾节点,返回f ...

  6. 平分的直线 牛客网 程序员面试金典 C++ Python

    平分的直线 牛客网 程序员面试金典 C++ Python 题目描述 在二维平面上,有两个正方形,请找出一条直线,能够将这两个正方形对半分.假定正方形的上下两条边与x轴平行. 给定两个vecotrA和B ...

  7. 奇偶位交换 牛客网 程序员面试金典 C++ Python

    奇偶位交换 牛客网 程序员面试金典 C++ Python 题目描述 请编写程序交换一个数的二进制的奇数位和偶数位.(使用越少的指令越好) 给定一个int x,请返回交换后的数int. 测试样例: 10 ...

  8. 字符串压缩 牛客网 程序员面试金典 C++ Python

    字符串压缩 牛客网 程序员面试金典 C++ Python 题目描述 利用字符重复出现的次数,编写一个方法,实现基本的字符串压缩功能.比如,字符串"aabcccccaaa"经压缩会变 ...

  9. 双栈排序 牛客网 程序员面试金典 C++ Python

    双栈排序 牛客网 程序员面试金典 C++ Python 题目描述 请编写一个程序,按升序对栈进行排序(即最大元素位于栈顶),要求最多只能使用一个额外的栈存放临时数据,但不得将元素复制到别的数据结构中. ...

随机推荐

  1. php 圆角图片处理

    /** * 把图片转换成圆角 * @param string $imgpath * @param int $radius * @return resource */ public function r ...

  2. 什么是 baseline 和 benchmark

    baseline 一个算法被称为 baseline 算法说明这个比目前这个算法还差的已经不能接受了,方法有革命性的创新点可以挖掘,且存在巨大提升空间和超越benchmark的潜力,只是由于发展初期导致 ...

  3. HDU2063 过山车(二分匹配)

    过山车 HDU - 2063 RPG girls今天和大家一起去游乐场玩,终于可以坐上梦寐以求的过山车了.可是,过山车的每一排只有两个座位,而且还有条不成文的规矩,就是每个女生必须找个个男生做part ...

  4. 洛谷P1803——凌乱的yyy(贪心)

    题目描述 现在各大oj上有n个比赛,每个比赛的开始.结束的时间点是知道的. yyy认为,参加越多的比赛,noip就能考的越好(假的) 所以,他想知道他最多能参加几个比赛. 由于yyy是蒟蒻,如果要参加 ...

  5. 学习PHP中的国际化日期格式化操作

    对于国际化功能来说,日期相关的格式化操作也是一块重头戏,毕竟不同的时区,不同的国家对于日期的表示方式都会有些不同.今天我们主要来学习的就是国际化地表示日期相关的信息内容. 日期格式化 首先就是最直接的 ...

  6. symfony的几个请求变量和方法

    请求变量 // 全部变量 $request->query->all(); // 指定变量 $request->query->get('abc'); 请求方式 $request- ...

  7. ggplot2 画图随笔

    ggplot2 盒图+显著性线 compire <- list(c('1','2'),c('1','4')) ggplot(info,aes(x=cluster,y=value))+ stat_ ...

  8. Python+selenium自动化生成测试报告

    批量执行完用例后,生成的测试报告是文本形式的,不够直观,为了更好的展示测试报告,最好是生成HTML格式的. unittest里面是不能生成html格式报告的,需要导入一个第三方的模块:HTMLTest ...

  9. python3之cx_Freeze使用(PyQt5)

    1.   cx_Freeze简介 Python脚本在装有Python的系统中可以直接双击运行,但绝大多数普通用户并没有配置此类环境,而编译为可执行二进制文件后,用户无需预先安装Python及依赖库即可 ...

  10. Chrome安装Postman以及启动的方式

    Postman一个web开发人员必不可少的接口调试神器 Chrome安装Postman的方法网上很多,就不一一列举了我个人使用的方式目前常用的两种方式 方式一:下载插件安装包使用开发者模式安装 推荐一 ...