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

做网站便宜还是app便宜wordpress首页翻页无效

做网站便宜还是app便宜,wordpress首页翻页无效,建设工程施工合同司法解释一二三,注册完域名 如何做网站目录 前言 1--反转单向链表 2--反转单向链表-II 3--反转双向链表 4--打印两个有序链表的公共部分 5--回文链表 6--链表调整 7--复制含有随机指针结点的链表 8--两个单链表相交问题 前言 面经#xff1a; 针对链表的题目#xff0c;对于笔试可以不太在乎空间复杂度         针对链表的题目对于笔试可以不太在乎空间复杂度以时间复杂度为主能过就行对于任何题型都一样笔试能过就行对于面试时间复杂度依然处在第一位但要力求空间复杂度最低的算法突出亮点         链表题的重要技巧包括使用额外的数据结构记录例如哈希表等使用快慢指针的思想 1--反转单向链表 笔试解法         借助栈先进后出可以遍历把结点存到栈中然后不断出栈这样结点的顺序就反转了         时间复杂度为O(n)空间复杂度为O(n) #include iostream #include stackstruct ListNode {int val;ListNode *next;ListNode() : val(0), next(nullptr) {}ListNode(int x) : val(x), next(nullptr) {}ListNode(int x, ListNode *next) : val(x), next(next) {} };class Solution { public:ListNode* reverseList(ListNode* head) {if(head NULL) return head;std::stackListNode* st;while(head ! NULL){st.push(head);head head-next;}ListNode *new_head new ListNode(0);ListNode *tmp new_head;while(!st.empty()){tmp-next st.top();st.pop();tmp tmp-next;}tmp-next NULL;return new_head-next;} };int main(int argc, char *argv[]){ListNode *Node1 new ListNode(1);ListNode *Node2 new ListNode(2);ListNode *Node3 new ListNode(3);ListNode *Node4 new ListNode(4);ListNode *Node5 new ListNode(5);Node1-next Node2;Node2-next Node3;Node3-next Node4;Node4-next Node5;Solution S1;ListNode *res S1.reverseList(Node1);while(res ! NULL){std::cout res-val ;res res-next;}return 0; } 面试解法         不借助栈或递归通过迭代将空间复杂度优化为O(1);         利用一个额外的前驱结点 pre 来存储当前结点 cur 的前一个结点不断更新 pre 和 cur即可 #include iostream #include stackstruct ListNode {int val;ListNode *next;ListNode() : val(0), next(nullptr) {}ListNode(int x) : val(x), next(nullptr) {}ListNode(int x, ListNode *next) : val(x), next(next) {} };class Solution { public:ListNode* reverseList(ListNode* head) {if(head NULL) return head;ListNode *pre NULL;ListNode *cur head;while(cur ! NULL){ListNode* next cur-next;cur-next pre;pre cur;cur next;}return pre;} };int main(int argc, char *argv[]){ListNode *Node1 new ListNode(1);ListNode *Node2 new ListNode(2);ListNode *Node3 new ListNode(3);ListNode *Node4 new ListNode(4);ListNode *Node5 new ListNode(5);Node1-next Node2;Node2-next Node3;Node3-next Node4;Node4-next Node5;Solution S1;ListNode *res S1.reverseList(Node1);while(res ! NULL){std::cout res-val ;res res-next;}return 0; } 2--反转单向链表-II 主要思路         使用三个指针指针 pre 指向反转区域外的第一个节点即上图中的 1指针 cur 指向当前指针指针 next 指向 cur 的下一个指针         遍历链表每次将 next 指针头插具体过程可以参考官方题解 #include iostreamstruct ListNode {int val;ListNode *next;ListNode() : val(0), next(nullptr) {}ListNode(int x) : val(x), next(nullptr) {}ListNode(int x, ListNode *next) : val(x), next(next) {} };class Solution { public:ListNode* reverseBetween(ListNode* head, int left, int right) {ListNode *dummyNode new ListNode(-1);dummyNode-next head;ListNode *pre dummyNode;ListNode *cur;ListNode *next;// 经过循环之后pre指向反转区域前的第一个节点for(int i 0; i left - 1; i){pre pre-next;}cur pre-next; // cur指向反转区域的第一个节点for(int i 0; i right - left; i){next cur-next;cur-next next-next; // cur指向next的下一个节点因为next节点要头插到pre节点后面next-next pre-next; // next节点头插指向原来的第一个节点pre-next next; // next节点头插到pre节点后面}return dummyNode-next;} };int main(){ListNode *Node1 new ListNode(1);ListNode *Node2 new ListNode(2);ListNode *Node3 new ListNode(3);ListNode *Node4 new ListNode(4);ListNode *Node5 new ListNode(5);Node1-next Node2;Node2-next Node3;Node3-next Node4;Node4-next Node5;Solution S1;int left 2, right 4;ListNode *res S1.reverseBetween(Node1, left, right);while(res ! NULL){std::cout res-val ;res res-next;}return 0; } 3--反转双向链表 主要思路         与反转单向链表类似使用 precur 和 next 指向前一个节点当前节点和后一个节点不断遍历更新三个指针所指向的节点即可并修改对应的前驱指针和后驱指针 #include iostream #include stackstruct ListNode {int val;ListNode *pre;ListNode *next;ListNode() : val(0), pre(nullptr), next(nullptr) {}ListNode(int x) : val(x), pre(nullptr), next(nullptr) {}ListNode(int x, ListNode *next) : val(x), pre(nullptr), next(next) {} };class Solution { public:ListNode* reverseList(ListNode* head) {if(head NULL) return head;ListNode *pre NULL;ListNode *cur head;while(cur ! NULL){ListNode* next cur-next;cur-next pre;cur-pre next;pre cur;cur next;}return pre;} };int main(int argc, char *argv[]){ListNode *Node1 new ListNode(1);ListNode *Node2 new ListNode(2);ListNode *Node3 new ListNode(3);ListNode *Node4 new ListNode(4);ListNode *Node5 new ListNode(5);Node1-next Node2;Node2-next Node3;Node3-next Node4;Node4-next Node5;Node2-pre Node1;Node3-pre Node2;Node4-pre Node3;Node5-pre Node4;Solution S1;ListNode *res S1.reverseList(Node1);while(res ! NULL){std::cout res-val ;if(res-pre ! NULL) std::cout res-pre-val;std::cout std::endl;res res-next;}return 0; } 4--打印两个有序链表的公共部分 给定两个有序链表的头指针 head1 和 head2打印两个链表的公共部分要求时间复杂度为O(n)额外空间复杂度要求为 O(1); 主要思路         类似于归并排序由于两个链表时有序的因此可以使用两个指针 i 和 j 分别指向两个链表         对于小的链表节点指针后移         当比较到两个指针相等时打印节点的值两个指针 i 和 j 同时后移 #include iostream #include vectorstruct ListNode {int val;ListNode *next;ListNode() : val(0), next(nullptr) {}ListNode(int x) : val(x), next(nullptr) {}ListNode(int x, ListNode *next) : val(x), next(next) {} };class Solution { public:std::vectorListNode* printlist(ListNode* head1, ListNode* head2) {std::vectorListNode* res;if(head1 NULL || head2 NULL) return res;ListNode *i head1;ListNode *j head2;while(i ! NULL j ! NULL){// 小的后移if(i-val j-val) i i-next;else if(i-val j-val) j j-next;else{ // 相等同时后移res.push_back(i);i i-next;j j-next;} }return res;} };int main(int argc, char *argv[]){ListNode *Node1 new ListNode(1);ListNode *Node2 new ListNode(2);ListNode *Node3 new ListNode(5);ListNode *Node4 new ListNode(0);ListNode *Node5 new ListNode(2);ListNode *Node6 new ListNode(3);ListNode *Node7 new ListNode(5);Node1-next Node2;Node2-next Node3;Node4-next Node5;Node5-next Node6;Node6-next Node7;Solution S1;std::vectorListNode * res S1.printlist(Node1, Node4);for(ListNode * node : res) std::cout node-val ;return 0; } 5--回文链表 主要思路         面试做法可以参考反转单向链表将链表反转与原链表的结点进行比较即可当反转链表与原链表的结点不相等表明不是回文链表         空间复杂度 O(n)时间复杂度 O(n) #include iostream #include stackstruct ListNode {int val;ListNode *next;ListNode() : val(0), next(nullptr) {}ListNode(int x) : val(x), next(nullptr) {}ListNode(int x, ListNode *next) : val(x), next(next) {} };class Solution { public:bool isPalindrome(ListNode* head) {if(head NULL) return true;std::stackListNode* st;ListNode *tmp head;while(tmp ! NULL){st.push(tmp);tmp tmp-next;}while(!st.empty()){if(head-val ! st.top()-val) return false;head head-next;st.pop();}return true;} };int main(int argc, char *argv[]){ListNode *Node1 new ListNode(1);ListNode *Node2 new ListNode(2);ListNode *Node3 new ListNode(2);ListNode *Node4 new ListNode(1);Node1-next Node2;Node2-next Node3;Node3-next Node4;Solution S1;bool res S1.isPalindrome(Node1);if(res) std::cout true std::endl;else std::cout false std::endl;return 0; } 主要思路         笔试解法上述解法的空间复杂度是 O(n)使用快慢指针将空间复杂度优化为 O(1)         主要原理是将链表由 1→2→1→2→1 构建为 1→2→1←2←1 的形式从两端遍历进行比较 #include iostreamstruct ListNode {int val;ListNode *next;ListNode() : val(0), next(nullptr) {}ListNode(int x) : val(x), next(nullptr) {}ListNode(int x, ListNode *next) : val(x), next(next) {} };class Solution { public:bool isPalindrome(ListNode* head) {if(head NULL) return true;ListNode *i head;ListNode *j head;while(j-next ! NULL j-next-next ! NULL){i i - next;j j - next - next;}j i-next; // right part first nodei-next NULL;ListNode *tmp NULL;while(j ! NULL){tmp j-next;j-next i;i j;j tmp;}j i; // 最后一个结点i head;while(i ! NULL j ! NULL){if(i-val ! j -val) return false;i i-next;j j-next;}return true;} };int main(int argc, char *argv[]){ListNode *Node1 new ListNode(1);ListNode *Node2 new ListNode(2);ListNode *Node3 new ListNode(2);ListNode *Node4 new ListNode(1);Node1-next Node2;Node2-next Node3;Node3-next Node4;Solution S1;bool res S1.isPalindrome(Node1);if(res) std::cout true std::endl;else std::cout false std::endl;return 0; } 6--链表调整 将单向链表按某值划分成左边小、中间相等、右边大的形式         题目给定一个单链表的头结点head结点的值类型是整型再给定一个整数pivot实现一个调整链表的的函数将链表调整为左部分都是值小于pivot的结点中间部分都是值等于pivot的结点右部分都是值大于pivot的结点         要求调整后所有小于、等于或大于pivot的结点之间的相对顺序和调整前一样时间复杂度为O(n)空间复杂度为O(1); #include iostreamstruct ListNode {int val;ListNode *next;ListNode() : val(0), next(nullptr) {}ListNode(int x) : val(x), next(nullptr) {}ListNode(int x, ListNode *next) : val(x), next(next) {} };class Solution { public:ListNode* change(ListNode* head, int pivot) {if(head NULL) return head;ListNode* SH NULL; // small headListNode* ST NULL; // small tailListNode* EH NULL; // equal headListNode* ET NULL; // equal tailListNode* LH NULL; // large headListNode* LT NULL; // large tailListNode* tmp;while(head ! NULL){tmp head-next; // 下一个结点head-next NULL;// 抽每一个结点出来进行比较if(head-val pivot){if(SH NULL ST NULL){SH head;ST head;}else{ST-next head;ST ST-next;}}else if(head-val pivot){if(EH NULL ET NULL){EH head;ET head;}else{ET-next head;ET ET-next;}}else{if(LH NULL LT NULL){LH head;LT head;}else{LT-next head;LT LT-next;}}head tmp; // 比较下一个结点}// 首尾相连if(ST ! NULL){// 有小于区域ST-next EH;ET ET NULL ? ST : ET; // 没有等于区域ET变成ST} if(ET ! NULL) ET-next LH;return SH ! NULL ? SH : (EH ! NULL ? EH : LH);} };int main(int argc, char *argv[]){ListNode *Node1 new ListNode(4);ListNode *Node2 new ListNode(6);ListNode *Node3 new ListNode(3);ListNode *Node4 new ListNode(5);ListNode *Node5 new ListNode(8);ListNode *Node6 new ListNode(5);ListNode *Node7 new ListNode(2);Node1-next Node2;Node2-next Node3;Node3-next Node4;Node4-next Node5;Node5-next Node6;Node6-next Node7;Solution S1;int pivot 5;ListNode* res S1.change(Node1, pivot);while(res ! NULL){std::cout res-val ;res res-next;}return 0; } 7--复制含有随机指针结点的链表 主要思路         笔试解法利用哈希表存储结点即 key 表示原来的结点value 表示复制的结点         存储完毕后遍历结点设置复制结点的 next 指针和 value 指针即可 #include iostream #include unordered_mapclass Node { public:int val;Node* next;Node* random;Node(int _val) {val _val;next NULL;random NULL;} };class Solution { public:Node* copyRandomList(Node* head) {std::unordered_mapNode*, Node* hash;Node *tmp head;while(tmp ! NULL){hash[tmp] new Node(tmp-val);tmp tmp-next;}tmp head;while(tmp ! NULL){hash[tmp]-next hash[tmp-next];hash[tmp]-random hash[tmp-random];tmp tmp-next;}return hash[head];} };int main(int argc, char *argv[]){Node* Node1 new Node(7);Node* Node2 new Node(13);Node* Node3 new Node(11);Node* Node4 new Node(10);Node* Node5 new Node(1);Node1-next Node2;Node2-next Node3;Node3-next Node4;Node4-next Node5;Node1-random NULL;Node2-random Node1;Node3-random Node5;Node4-random Node3;Node4-random Node1;Solution S1;Node* res S1.copyRandomList(Node1);while(res ! NULL){std::cout res-val ;res res-next;}return 0; } 主要思路         面试解法将空间复杂度优化为 O(1)         将原链表Ori_Node1 → Ori_Node2 → Ori_Node3 构造成 Ori_Node1 → New_Node1 → Ori_Node2 → New_Node2 → Ori_Node3 → New_Node3;         接着一对一对地去遍历链表构建 random 指针         最后将新旧链表分离构建 next 指针即可 #include iostreamclass Node { public:int val;Node* next;Node* random;Node(int _val) {val _val;next NULL;random NULL;} };class Solution { public:Node* copyRandomList(Node* head) {if (head NULL) return NULL;Node* tmp head;Node* next NULL;while(tmp ! NULL){next tmp-next; // 原链表下一个结点tmp-next new Node(tmp-val); // 创建新结点tmp-next-next next; // 新结点指向原链表地下一个结点tmp next; // 更新tmp}tmp head; // 遍历构建random指针while(tmp ! NULL){next tmp-next-next; // 一对一对遍历tmp-next-random tmp-random ! NULL ? tmp-random-next : NULL;tmp next;}// 分离链表并构建next指针tmp head;Node *res head-next;Node *copy;while(tmp ! NULL){copy tmp-next;next tmp-next-next; // 一对一对分离tmp-next next;copy-next next ! NULL ? next-next : NULL;tmp next;}return res;} };int main(int argc, char *argv[]){Node* Node1 new Node(7);Node* Node2 new Node(13);Node* Node3 new Node(11);Node* Node4 new Node(10);Node* Node5 new Node(1);Node1-next Node2;Node2-next Node3;Node3-next Node4;Node4-next Node5;Node1-random NULL;Node2-random Node1;Node3-random Node5;Node4-random Node3;Node4-random Node1;Solution S1;Node* res S1.copyRandomList(Node1);while(res ! NULL){std::cout res-val ;res res-next;}return 0; } 8--两个单链表相交问题
文章转载自:
http://www.morning.pphgl.cn.gov.cn.pphgl.cn
http://www.morning.qcmhs.cn.gov.cn.qcmhs.cn
http://www.morning.jqrhz.cn.gov.cn.jqrhz.cn
http://www.morning.ynjhk.cn.gov.cn.ynjhk.cn
http://www.morning.gfqjf.cn.gov.cn.gfqjf.cn
http://www.morning.jwtwf.cn.gov.cn.jwtwf.cn
http://www.morning.gnbtp.cn.gov.cn.gnbtp.cn
http://www.morning.rfrx.cn.gov.cn.rfrx.cn
http://www.morning.3ox8hs.cn.gov.cn.3ox8hs.cn
http://www.morning.mfltz.cn.gov.cn.mfltz.cn
http://www.morning.cnlmp.cn.gov.cn.cnlmp.cn
http://www.morning.lyzwdt.com.gov.cn.lyzwdt.com
http://www.morning.kqgsn.cn.gov.cn.kqgsn.cn
http://www.morning.klpwl.cn.gov.cn.klpwl.cn
http://www.morning.bmmyx.cn.gov.cn.bmmyx.cn
http://www.morning.xmyrn.cn.gov.cn.xmyrn.cn
http://www.morning.hcszr.cn.gov.cn.hcszr.cn
http://www.morning.yhpl.cn.gov.cn.yhpl.cn
http://www.morning.jbshh.cn.gov.cn.jbshh.cn
http://www.morning.hqnsf.cn.gov.cn.hqnsf.cn
http://www.morning.rqqkc.cn.gov.cn.rqqkc.cn
http://www.morning.dqzcf.cn.gov.cn.dqzcf.cn
http://www.morning.ddgl.com.cn.gov.cn.ddgl.com.cn
http://www.morning.zqkms.cn.gov.cn.zqkms.cn
http://www.morning.bpmth.cn.gov.cn.bpmth.cn
http://www.morning.yfnhg.cn.gov.cn.yfnhg.cn
http://www.morning.gnghp.cn.gov.cn.gnghp.cn
http://www.morning.lhxkl.cn.gov.cn.lhxkl.cn
http://www.morning.mnqg.cn.gov.cn.mnqg.cn
http://www.morning.srjbs.cn.gov.cn.srjbs.cn
http://www.morning.tbknh.cn.gov.cn.tbknh.cn
http://www.morning.nfgbf.cn.gov.cn.nfgbf.cn
http://www.morning.cptzd.cn.gov.cn.cptzd.cn
http://www.morning.qzbwmf.cn.gov.cn.qzbwmf.cn
http://www.morning.kflbf.cn.gov.cn.kflbf.cn
http://www.morning.rlxg.cn.gov.cn.rlxg.cn
http://www.morning.lsyk.cn.gov.cn.lsyk.cn
http://www.morning.xflzm.cn.gov.cn.xflzm.cn
http://www.morning.dnvhfh.cn.gov.cn.dnvhfh.cn
http://www.morning.zlcsz.cn.gov.cn.zlcsz.cn
http://www.morning.drwpn.cn.gov.cn.drwpn.cn
http://www.morning.lprfk.cn.gov.cn.lprfk.cn
http://www.morning.qsy41.cn.gov.cn.qsy41.cn
http://www.morning.tkxyx.cn.gov.cn.tkxyx.cn
http://www.morning.wnjrf.cn.gov.cn.wnjrf.cn
http://www.morning.ygqhd.cn.gov.cn.ygqhd.cn
http://www.morning.wjfzp.cn.gov.cn.wjfzp.cn
http://www.morning.hqxyt.cn.gov.cn.hqxyt.cn
http://www.morning.bxhch.cn.gov.cn.bxhch.cn
http://www.morning.ltspm.cn.gov.cn.ltspm.cn
http://www.morning.cpmwg.cn.gov.cn.cpmwg.cn
http://www.morning.tndxg.cn.gov.cn.tndxg.cn
http://www.morning.kfyjh.cn.gov.cn.kfyjh.cn
http://www.morning.zkdbx.cn.gov.cn.zkdbx.cn
http://www.morning.jyzqn.cn.gov.cn.jyzqn.cn
http://www.morning.rqlf.cn.gov.cn.rqlf.cn
http://www.morning.tkrdg.cn.gov.cn.tkrdg.cn
http://www.morning.ywndg.cn.gov.cn.ywndg.cn
http://www.morning.zmpqt.cn.gov.cn.zmpqt.cn
http://www.morning.mpbgy.cn.gov.cn.mpbgy.cn
http://www.morning.pdgqf.cn.gov.cn.pdgqf.cn
http://www.morning.lxbml.cn.gov.cn.lxbml.cn
http://www.morning.nhrkl.cn.gov.cn.nhrkl.cn
http://www.morning.lngyd.cn.gov.cn.lngyd.cn
http://www.morning.wdpbq.cn.gov.cn.wdpbq.cn
http://www.morning.nhrkl.cn.gov.cn.nhrkl.cn
http://www.morning.stbfy.cn.gov.cn.stbfy.cn
http://www.morning.cgtfl.cn.gov.cn.cgtfl.cn
http://www.morning.rknjx.cn.gov.cn.rknjx.cn
http://www.morning.wphfl.cn.gov.cn.wphfl.cn
http://www.morning.wnrcj.cn.gov.cn.wnrcj.cn
http://www.morning.thlr.cn.gov.cn.thlr.cn
http://www.morning.wbxrl.cn.gov.cn.wbxrl.cn
http://www.morning.pwwjs.cn.gov.cn.pwwjs.cn
http://www.morning.jbkcs.cn.gov.cn.jbkcs.cn
http://www.morning.szoptic.com.gov.cn.szoptic.com
http://www.morning.jhxtm.cn.gov.cn.jhxtm.cn
http://www.morning.wpmqq.cn.gov.cn.wpmqq.cn
http://www.morning.xdmsq.cn.gov.cn.xdmsq.cn
http://www.morning.dbdmr.cn.gov.cn.dbdmr.cn
http://www.tj-hxxt.cn/news/235057.html

相关文章:

  • 找网站建设公司好成都网络公司网站
  • 常熟网站制作设计电子商务实训网站建设
  • 沈阳市城市建设局网站临沧网站建设临沧
  • 临沂大企业网站wordpress手机主题mip
  • 做的网站如何全屏代码前端如何做响应式网站
  • 创建网站怎么收费信息发布网站有哪些
  • 上海建筑 公司网站网站建设验收程序
  • 杭州网站前端建设成都网络推广公司
  • 常州市建设工程管理中心网站男女做爰全过程的视频网站
  • 做app的网站有哪些功能wordpress 微信支付
  • 做网站的收入来源建设网站前的需求分析
  • 做网站必须有云虚拟主机网站建设的发展序列
  • 东莞做网站哪里好互联网备案查询
  • 简洁大气企业网站源码 后台做网站需要视频衔接怎么做
  • 英文网站建设压缩图片在线网站免费
  • 网站维护什么情况网页设计与网站建设景点介绍
  • 建设网站需要哪些域名北京建筑公司招聘信息
  • 如何在微信公众号里建设微网站昆明网站建设服务
  • 广州建设网站 公司百度网址收录入口
  • wordpress 是什么宁波网页关键词优化公司
  • 网站制作公司 全贵州建筑公司网站页面图片
  • 网站建站上海seo赚钱吗
  • 用微信怎么做企业网站有限公司是什么性质企业
  • 上海松江做网站多少钱如何开外贸公司创业
  • 网站页面优化方案网站建设一般需要几个步骤
  • 商汇通网站孔夫子旧书网网站谁做的
  • 用手机免费制作自己的网站wordpress商业站
  • 备案的网站建设书是什么意思新冠感染最新数据
  • 做设计不进设计公司网站广东律师事务所东莞网站建设
  • 中山公众号平台商场网站建设做一个二手网站怎么做