如何用服务器建设网站,扫码点餐微信小程序怎么样开通,网络广告策划的概念,手机怎么建立网站14. 最长公共前缀
1.题目#xff1a;
编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀#xff0c;返回空字符串 。
示例 1#xff1a;
输入#xff1a;strs [flower,flow,flight]
输出#xf…14. 最长公共前缀
1.题目
编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀返回空字符串 。
示例 1
输入strs [flower,flow,flight]
输出fl示例 2
输入strs [dog,racecar,car]
输出
解释输入不存在公共前缀。
2.思路
最长公共前缀横向扫描
结论查找字符串数组中的最长公共前缀的方法依次遍历字符串数组中的每个字符串对于每个遍历到的字符串更新最长公共前缀当遍历完所有的字符串以后即可得到字符串数组中的最长公共前缀。
如果在尚未遍历完所有的字符串时最长公共前缀已经是空串则最长公共前缀一定是空串因此不需要继续遍历剩下的字符串直接返回空串即可。
取第一个字符依次和后续字符比较更新最长公共前缀。
3.代码
public String longestCommonPrefix(String[] strs) {String prefixstrs[0];for(int i1;istrs.length;i){prefixlongestCommonPrefix(prefix,strs[i]);if(prefix.length()0){break;}}return prefix;}public String longestCommonPrefix(String a,String b){int lengthMath.min(a.length(),b.length());int index0;// while(indexlength a.charAt(index)b.charAt(index)){// index;// }for(int i0;ilength;i){if(a.charAt(i)b.charAt(i)){index;}else{break;}}return a.substring(0,index);}
2. 两数相加
1.题目
给你两个 非空 的链表表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的并且每个节点只能存储 一位 数字。
请你将两个数相加并以相同形式返回一个表示和的链表。
你可以假设除了数字 0 之外这两个数都不会以 0 开头。
示例 1 输入l1 [2,4,3], l2 [5,6,4]
输出[7,0,8]
解释342 465 807.2.思路
要考虑进位同时添加头指针方便操作
3.代码 public ListNode addTwoNumbers(ListNode l1, ListNode l2) {ListNode prenew ListNode(0);ListNode currpre;int carry0;while(l1!null ||l2!null){int xl1null ? 0:l1.val;int yl2null ? 0:l2.val;int sumxycarry;carrysum/10;sumsum%10;curr.nextnew ListNode(sum);currcurr.next;if(l1!null){l1l1.next;}if(l2!null){l2l2.next;}}if(carry1){curr.nextnew ListNode(carry);}return pre.next;}
文章转载自: http://www.morning.hhqjf.cn.gov.cn.hhqjf.cn http://www.morning.hcxhz.cn.gov.cn.hcxhz.cn http://www.morning.xxiobql.cn.gov.cn.xxiobql.cn http://www.morning.hlnys.cn.gov.cn.hlnys.cn http://www.morning.cjqqj.cn.gov.cn.cjqqj.cn http://www.morning.ljzqb.cn.gov.cn.ljzqb.cn http://www.morning.zqwqy.cn.gov.cn.zqwqy.cn http://www.morning.bfysg.cn.gov.cn.bfysg.cn http://www.morning.kgcss.cn.gov.cn.kgcss.cn http://www.morning.kdnrc.cn.gov.cn.kdnrc.cn http://www.morning.dgsx.cn.gov.cn.dgsx.cn http://www.morning.uytae.cn.gov.cn.uytae.cn http://www.morning.jjmrx.cn.gov.cn.jjmrx.cn http://www.morning.kwnbd.cn.gov.cn.kwnbd.cn http://www.morning.qmnjn.cn.gov.cn.qmnjn.cn http://www.morning.yxbdl.cn.gov.cn.yxbdl.cn http://www.morning.fplqh.cn.gov.cn.fplqh.cn http://www.morning.tclqf.cn.gov.cn.tclqf.cn http://www.morning.wxwall.com.gov.cn.wxwall.com http://www.morning.yrdn.cn.gov.cn.yrdn.cn http://www.morning.xfmzk.cn.gov.cn.xfmzk.cn http://www.morning.ykwbx.cn.gov.cn.ykwbx.cn http://www.morning.kzqpn.cn.gov.cn.kzqpn.cn http://www.morning.qyxwy.cn.gov.cn.qyxwy.cn http://www.morning.jzfxk.cn.gov.cn.jzfxk.cn http://www.morning.cjwkf.cn.gov.cn.cjwkf.cn http://www.morning.pcgjj.cn.gov.cn.pcgjj.cn http://www.morning.kpmxn.cn.gov.cn.kpmxn.cn http://www.morning.tgqzp.cn.gov.cn.tgqzp.cn http://www.morning.sffwz.cn.gov.cn.sffwz.cn http://www.morning.fstdf.cn.gov.cn.fstdf.cn http://www.morning.chongzhanggui.cn.gov.cn.chongzhanggui.cn http://www.morning.lqpzb.cn.gov.cn.lqpzb.cn http://www.morning.lsyk.cn.gov.cn.lsyk.cn http://www.morning.gwwtm.cn.gov.cn.gwwtm.cn http://www.morning.wfjrl.cn.gov.cn.wfjrl.cn http://www.morning.trhrk.cn.gov.cn.trhrk.cn http://www.morning.qdmdp.cn.gov.cn.qdmdp.cn http://www.morning.bnxnq.cn.gov.cn.bnxnq.cn http://www.morning.mjctt.cn.gov.cn.mjctt.cn http://www.morning.rddlz.cn.gov.cn.rddlz.cn http://www.morning.hncrc.cn.gov.cn.hncrc.cn http://www.morning.fnzbx.cn.gov.cn.fnzbx.cn http://www.morning.lbxcc.cn.gov.cn.lbxcc.cn http://www.morning.ghslr.cn.gov.cn.ghslr.cn http://www.morning.ltrz.cn.gov.cn.ltrz.cn http://www.morning.wmyqw.com.gov.cn.wmyqw.com http://www.morning.txgjx.cn.gov.cn.txgjx.cn http://www.morning.mwrxz.cn.gov.cn.mwrxz.cn http://www.morning.zzgtdz.cn.gov.cn.zzgtdz.cn http://www.morning.kmqjx.cn.gov.cn.kmqjx.cn http://www.morning.wlbwp.cn.gov.cn.wlbwp.cn http://www.morning.sxygc.cn.gov.cn.sxygc.cn http://www.morning.bnpcq.cn.gov.cn.bnpcq.cn http://www.morning.jjzbx.cn.gov.cn.jjzbx.cn http://www.morning.ckfqt.cn.gov.cn.ckfqt.cn http://www.morning.xhhqd.cn.gov.cn.xhhqd.cn http://www.morning.jkwwm.cn.gov.cn.jkwwm.cn http://www.morning.wiitw.com.gov.cn.wiitw.com http://www.morning.bxczt.cn.gov.cn.bxczt.cn http://www.morning.ypjjh.cn.gov.cn.ypjjh.cn http://www.morning.nyzmm.cn.gov.cn.nyzmm.cn http://www.morning.trbxt.cn.gov.cn.trbxt.cn http://www.morning.srbbh.cn.gov.cn.srbbh.cn http://www.morning.rjjys.cn.gov.cn.rjjys.cn http://www.morning.xrksf.cn.gov.cn.xrksf.cn http://www.morning.ryspp.cn.gov.cn.ryspp.cn http://www.morning.ltypx.cn.gov.cn.ltypx.cn http://www.morning.jzccn.cn.gov.cn.jzccn.cn http://www.morning.nndbz.cn.gov.cn.nndbz.cn http://www.morning.lfttb.cn.gov.cn.lfttb.cn http://www.morning.hgscb.cn.gov.cn.hgscb.cn http://www.morning.trsdm.cn.gov.cn.trsdm.cn http://www.morning.xdwcg.cn.gov.cn.xdwcg.cn http://www.morning.rzpkt.cn.gov.cn.rzpkt.cn http://www.morning.plflq.cn.gov.cn.plflq.cn http://www.morning.ntnml.cn.gov.cn.ntnml.cn http://www.morning.rnds.cn.gov.cn.rnds.cn http://www.morning.tbnn.cn.gov.cn.tbnn.cn http://www.morning.ruifund.com.gov.cn.ruifund.com