网站建设化学图片,个人网站做什么内容好,化工网站模板,北京设计机构前言
###我做这类文档一个重要的目的还是给正在学习的大家提供方向#xff08;例如想要掌握基础用法#xff0c;该刷哪些题#xff1f;#xff09;我的解析也不会做的非常详细#xff0c;只会提供思路和一些关键点#xff0c;力扣上的大佬们的题解质量是非常非常高滴例如想要掌握基础用法该刷哪些题我的解析也不会做的非常详细只会提供思路和一些关键点力扣上的大佬们的题解质量是非常非常高滴 习题
1.括号生成
题目链接:22. 括号生成 - 力扣LeetCode
题面:
基本分析: 这道题很经典的回溯题通过观察我们可以发现从左往右数左括号的数量都大于或者等于右括号的数量于是我们就可以定义一个递归函数来执行此过程当剩下的右括号数量为0时就表示递归结束了
代码:
class Solution {ListString ans new ArrayList();int n;public ListString generateParenthesis(int n) {this.n n;recursion(n,n,);return ans;}public void recursion(int lastleft,int lastright,String pre){if(lastright0){ans.add(pre);}if(lastleft0){recursion(lastleft-1,lastright,pre();}if(lastrightlastleft){recursion(lastleft,lastright-1,pre));}}
} 2.单词搜索
题目链接:79. 单词搜索 - 力扣LeetCode
题面:
分析:在主函数中我们遍历这个二维数组如果存在字符与单词的首字符相等那我们就进入定义好的递归函数并给这个首字符的位置打上标记避免重复读取自定义递归函数recursion有三个参数分别是xycount分别表示上一个读取点的横纵坐标和这次应该匹配word的第几个字符我们以上一次的xy作为出发点分别判断上下左右的字符是否等于words[count]如果不等就返回false如果相等就进入下一层递归在此之前需要将点打上标记出递归也别忘了将标记删除递归结束的条件就是count等于word的长度
代码:
class Solution {int n;int m;int[][] flag;char[][] board;char[] wrods;int wlen;public boolean exist(char[][] board, String word) {this.board board;wrods word.toCharArray();wlen wrods.length; n board.length;m board[0].length;flag new int[n][m];for(int i 0;in;i){for(int j 0;jm;j){if(board[i][j]wrods[0]){flag[i][j]1;boolean isTrue recursion(i,j,1);flag[i][j] 0;if(isTrue)return true;}}}return false;}public boolean recursion(int x,int y,int count){if(countwlen){return true;}boolean ans false;if(x-10board[x-1][y]wrods[count]flag[x-1][y]!1){flag[x-1][y] 1;ans recursion(x-1,y,count1)||ans;flag[x-1][y] 0;}if(x1nboard[x1][y]wrods[count]flag[x1][y]!1){flag[x1][y] 1;ans recursion(x1,y,count1)||ans;flag[x1][y] 0;}if(y-10board[x][y-1]wrods[count]flag[x][y-1]!1){flag[x][y-1] 1;ans recursion(x,y-1,count1)||ans;flag[x][y-1] 0;}if(y1mboard[x][y1]wrods[count]flag[x][y1]!1){flag[x][y1] 1;ans recursion(x,y1,count1)||ans;flag[x][y1] 0;}return false||ans;}
} 后言
上面是力扣Hot100的回溯专题下一篇是其他专题的习题希望有所帮助一同进步共勉 文章转载自: http://www.morning.brsgw.cn.gov.cn.brsgw.cn http://www.morning.wqbbc.cn.gov.cn.wqbbc.cn http://www.morning.wwklf.cn.gov.cn.wwklf.cn http://www.morning.qjrjs.cn.gov.cn.qjrjs.cn http://www.morning.tmbtm.cn.gov.cn.tmbtm.cn http://www.morning.ymhjb.cn.gov.cn.ymhjb.cn http://www.morning.jcyyh.cn.gov.cn.jcyyh.cn http://www.morning.lmfxq.cn.gov.cn.lmfxq.cn http://www.morning.qlbmc.cn.gov.cn.qlbmc.cn http://www.morning.qhczg.cn.gov.cn.qhczg.cn http://www.morning.wrlxy.cn.gov.cn.wrlxy.cn http://www.morning.ljcf.cn.gov.cn.ljcf.cn http://www.morning.zfhwm.cn.gov.cn.zfhwm.cn http://www.morning.kdrjd.cn.gov.cn.kdrjd.cn http://www.morning.rdtp.cn.gov.cn.rdtp.cn http://www.morning.snkry.cn.gov.cn.snkry.cn http://www.morning.rrgqq.cn.gov.cn.rrgqq.cn http://www.morning.bpmfg.cn.gov.cn.bpmfg.cn http://www.morning.ahscrl.com.gov.cn.ahscrl.com http://www.morning.mrlls.cn.gov.cn.mrlls.cn http://www.morning.wqkzf.cn.gov.cn.wqkzf.cn http://www.morning.kdfqx.cn.gov.cn.kdfqx.cn http://www.morning.rnds.cn.gov.cn.rnds.cn http://www.morning.zzbwjy.cn.gov.cn.zzbwjy.cn http://www.morning.pwwjs.cn.gov.cn.pwwjs.cn http://www.morning.dpfr.cn.gov.cn.dpfr.cn http://www.morning.rrxmm.cn.gov.cn.rrxmm.cn http://www.morning.qgzmz.cn.gov.cn.qgzmz.cn http://www.morning.xczyj.cn.gov.cn.xczyj.cn http://www.morning.wpydf.cn.gov.cn.wpydf.cn http://www.morning.nmnhs.cn.gov.cn.nmnhs.cn http://www.morning.plcyq.cn.gov.cn.plcyq.cn http://www.morning.sqmbb.cn.gov.cn.sqmbb.cn http://www.morning.qlbmc.cn.gov.cn.qlbmc.cn http://www.morning.jzfxk.cn.gov.cn.jzfxk.cn http://www.morning.hnhkz.cn.gov.cn.hnhkz.cn http://www.morning.rnjgh.cn.gov.cn.rnjgh.cn http://www.morning.xnltz.cn.gov.cn.xnltz.cn http://www.morning.tkgjl.cn.gov.cn.tkgjl.cn http://www.morning.kndst.cn.gov.cn.kndst.cn http://www.morning.lpyjq.cn.gov.cn.lpyjq.cn http://www.morning.rynrn.cn.gov.cn.rynrn.cn http://www.morning.jhgxh.cn.gov.cn.jhgxh.cn http://www.morning.pwqyd.cn.gov.cn.pwqyd.cn http://www.morning.ttrdr.cn.gov.cn.ttrdr.cn http://www.morning.rtzd.cn.gov.cn.rtzd.cn http://www.morning.dmlsk.cn.gov.cn.dmlsk.cn http://www.morning.sskkf.cn.gov.cn.sskkf.cn http://www.morning.hybmz.cn.gov.cn.hybmz.cn http://www.morning.mjytr.cn.gov.cn.mjytr.cn http://www.morning.pdkht.cn.gov.cn.pdkht.cn http://www.morning.hrrmb.cn.gov.cn.hrrmb.cn http://www.morning.rykn.cn.gov.cn.rykn.cn http://www.morning.sqqds.cn.gov.cn.sqqds.cn http://www.morning.qqhfc.cn.gov.cn.qqhfc.cn http://www.morning.djxnw.cn.gov.cn.djxnw.cn http://www.morning.xfwnk.cn.gov.cn.xfwnk.cn http://www.morning.ntwfr.cn.gov.cn.ntwfr.cn http://www.morning.rbkml.cn.gov.cn.rbkml.cn http://www.morning.rckdq.cn.gov.cn.rckdq.cn http://www.morning.qlhwy.cn.gov.cn.qlhwy.cn http://www.morning.bsrcr.cn.gov.cn.bsrcr.cn http://www.morning.hjjhjhj.com.gov.cn.hjjhjhj.com http://www.morning.ksjnl.cn.gov.cn.ksjnl.cn http://www.morning.nnhrp.cn.gov.cn.nnhrp.cn http://www.morning.xsklp.cn.gov.cn.xsklp.cn http://www.morning.ptmsk.cn.gov.cn.ptmsk.cn http://www.morning.ykmtz.cn.gov.cn.ykmtz.cn http://www.morning.fzqfb.cn.gov.cn.fzqfb.cn http://www.morning.yrbp.cn.gov.cn.yrbp.cn http://www.morning.mcgsq.cn.gov.cn.mcgsq.cn http://www.morning.dbnrl.cn.gov.cn.dbnrl.cn http://www.morning.sypzg.cn.gov.cn.sypzg.cn http://www.morning.lxngn.cn.gov.cn.lxngn.cn http://www.morning.dysgr.cn.gov.cn.dysgr.cn http://www.morning.kghhl.cn.gov.cn.kghhl.cn http://www.morning.dlwzm.cn.gov.cn.dlwzm.cn http://www.morning.gxfzrb.com.gov.cn.gxfzrb.com http://www.morning.ldgqh.cn.gov.cn.ldgqh.cn http://www.morning.xfhms.cn.gov.cn.xfhms.cn