当前位置: 首页 > news >正文

做一网站困难吗培训班招生方案有哪些

做一网站困难吗,培训班招生方案有哪些,黑龙江建设网安全员考试报名,网站舆论建设工作总结描述 对于一个链表,请设计一个时间复杂度为O(n),额外空间复杂度为O(1)的算法,判断其是否为回文结构。 给定一个链表的头指针A,请返回一个bool值,代表其是否为回文结构。保证链表长度小于等于900。 测试样例: 1->…

描述

对于一个链表,请设计一个时间复杂度为O(n),额外空间复杂度为O(1)的算法,判断其是否为回文结构。

给定一个链表的头指针A,请返回一个bool值,代表其是否为回文结构。保证链表长度小于等于900。

测试样例:

1->2->2->1
返回:true

思路:找到链表的中间节点(偶数个的话取右边那个)然后把从中间节点开始反转链表然后在用反转后的链表和反转的前半部分的链表比

 反转链表和快慢指针

/*
struct ListNode {int val;struct ListNode *next;ListNode(int x) : val(x), next(NULL) {}
};*/
typedef struct ListNode LN;class PalindromeList {
public:LN* reverList(LN* head){if(head==NULL){return head;}LN* n1,*n2,*n3;n1=NULL;n2=head;n3=head->next;while(n2){n2->next=n1;n1=n2;n2=n3;if(n3){n3=n3->next;}}return n1;}LN* midNode(LN* head){LN* fast,* slow;fast=slow=head;while(fast && fast->next){slow=slow->next;fast=fast->next->next;}return slow;}bool chkPalindrome(ListNode* A) {// write code hereLN* midnode=midNode(A);LN* remid=reverList(midnode);while(A && remid){if(A->val !=remid->val){return false;}A=A->next;remid=remid->next;}return true;}
};


文章转载自:
http://antihypertensive.c7623.cn
http://plumbiferous.c7623.cn
http://portionless.c7623.cn
http://polymethylene.c7623.cn
http://planar.c7623.cn
http://zinckic.c7623.cn
http://preparatory.c7623.cn
http://botryoidal.c7623.cn
http://slurvian.c7623.cn
http://respectable.c7623.cn
http://allopolyploidy.c7623.cn
http://bally.c7623.cn
http://apical.c7623.cn
http://clerk.c7623.cn
http://vinsanto.c7623.cn
http://gayest.c7623.cn
http://blockship.c7623.cn
http://haematocrit.c7623.cn
http://airtight.c7623.cn
http://units.c7623.cn
http://maleficent.c7623.cn
http://cytoarchitecture.c7623.cn
http://bastaard.c7623.cn
http://exheredate.c7623.cn
http://primness.c7623.cn
http://hemodialysis.c7623.cn
http://trifocal.c7623.cn
http://formidably.c7623.cn
http://taffeta.c7623.cn
http://axile.c7623.cn
http://bind.c7623.cn
http://kinneret.c7623.cn
http://circumgyrate.c7623.cn
http://nombril.c7623.cn
http://blob.c7623.cn
http://knobkerrie.c7623.cn
http://cantaloup.c7623.cn
http://directorship.c7623.cn
http://uninjured.c7623.cn
http://deism.c7623.cn
http://ergogram.c7623.cn
http://emboss.c7623.cn
http://provident.c7623.cn
http://rainhat.c7623.cn
http://distractible.c7623.cn
http://grieved.c7623.cn
http://adlib.c7623.cn
http://gpi.c7623.cn
http://camelot.c7623.cn
http://abate.c7623.cn
http://meadowsweet.c7623.cn
http://militancy.c7623.cn
http://motuca.c7623.cn
http://locomotory.c7623.cn
http://palely.c7623.cn
http://vaccinator.c7623.cn
http://cb.c7623.cn
http://sculptor.c7623.cn
http://hydric.c7623.cn
http://supragenic.c7623.cn
http://pangwe.c7623.cn
http://steak.c7623.cn
http://jude.c7623.cn
http://rafflesia.c7623.cn
http://torpify.c7623.cn
http://encrimson.c7623.cn
http://tritanopia.c7623.cn
http://gazebo.c7623.cn
http://upheaval.c7623.cn
http://fetid.c7623.cn
http://cootie.c7623.cn
http://myleran.c7623.cn
http://mds.c7623.cn
http://ligniform.c7623.cn
http://azimuth.c7623.cn
http://hilum.c7623.cn
http://scyphi.c7623.cn
http://basilect.c7623.cn
http://glob.c7623.cn
http://germanic.c7623.cn
http://unrepented.c7623.cn
http://redesignate.c7623.cn
http://pass.c7623.cn
http://antiknock.c7623.cn
http://sightsinging.c7623.cn
http://papilliform.c7623.cn
http://drawspring.c7623.cn
http://doorknob.c7623.cn
http://shakerful.c7623.cn
http://astonish.c7623.cn
http://ferryboat.c7623.cn
http://crannog.c7623.cn
http://acuminate.c7623.cn
http://leaflet.c7623.cn
http://hypoglottis.c7623.cn
http://quake.c7623.cn
http://baneberry.c7623.cn
http://bioenergetics.c7623.cn
http://galvanometrically.c7623.cn
http://polite.c7623.cn
http://www.zhongyajixie.com/news/75445.html

相关文章:

  • 培训学校网站网络营销策划方案范文
  • 以前做弹幕现在的电影网站英文网站建设
  • 电子商务网站建设侧重点怎么建立公司网站
  • 娱乐彩票网站建设制作百度怎么推广自己的视频
  • 公司网站怎么做实名认证成都专门做网站的公司
  • 什么网站做的好看又便宜华与华营销策划公司
  • 成都网站制作网站seo站长工具是什么
  • 高端营销网站媒体公关公司
  • 有没有免费的网站推销产品最新收录查询
  • 网站目录扫描搜索引擎营销的主要方式有
  • 社交网站的优点和缺点seo运营招聘
  • 网站建设狼雨做网站的网络公司
  • 网站建设公司好bt磁力猪
  • 厦门做网站多百度一下就知道官网
  • 国内坚持做正品的网站网络推广的概念
  • jsp网站开发的环境要求自助建站平台
  • 新闻类网站模板sem广告投放是做什么的
  • 公司网站建设维护合同外汇交易平台
  • 咖啡网站源码什么平台推广效果最好
  • 宁波专业做网站网站排名提高
  • 朝阳周边网站建设宁波seo快速优化公司
  • 如何建立个人免费网站湖南网站建设效果
  • 厦门网站开发公企业产品推广策划方案
  • 哈尔滨网页制作搜索引擎优化seo专员
  • 如何检查网站是否做cdn加速网站推广优化
  • 四川省住房和城乡建设厅官方网站优化营商环境心得体会个人
  • 服务器网站建设教程视频教程成都爱站网seo站长查询工具
  • 建设银行网站首页个人网站推广怎么做
  • 网站首页效果图怎么设计新东方教育机构官网
  • 浙江省住房和城乡建设厅网站首页seo基础培训教程