wap网站开发技术,阳泉做网站多少钱,编辑器wordpress,企业网站推广的形式有216.组合总和III
和前一个题一样#xff0c;照着自己就能写出来#xff0c;就多了一个判断结果是不是等于n的逻辑。有两个地方可以剪纸#xff0c;一个是当和已经大于要找的时候直接返回#xff0c;另一个是当剩余元素少于三个的时候直接返回#xff08;第一层递归是少于…216.组合总和III
和前一个题一样照着自己就能写出来就多了一个判断结果是不是等于n的逻辑。有两个地方可以剪纸一个是当和已经大于要找的时候直接返回另一个是当剩余元素少于三个的时候直接返回第一层递归是少于三个 第二层递归是少于两个
class Solution {
public:vectorvectorint result;vectorint path;int sum 0;void traversal(int k, int n, int start_index) {if (path.size() k) {if (sum n) {result.push_back(path);return;}}for (int i start_index; i 9; i) {path.push_back(i);sum i;traversal(k, n, i 1);path.pop_back();sum -i;}}vectorvectorint combinationSum3(int k, int n) {traversal(k,n,1);return result;}
}; 17. Letter Combinations of a Phone Number
注意下string的用法。比如定义string s可以对s做 s[]操作
class Solution {
public:const string letterMap[10] {, // 0, // 1abc, // 2def, // 3ghi, // 4jkl, // 5mno, // 6pqrs, // 7tuv, // 8wxyz, // 9};vectorstring result; //这个用来存总共的结果集string s; //这个用来存单个的结果集void backtracking(const string digits, int index){ //这个二叉树的深度就是index的个数宽度就是三个字母if (index digits.size()) {result.push_back(s);return;}int digit digits[index] - 0; //假如是“23”这里就取出来了2因为主函数一开始的index是0就是这个字符串第一个数string letters letterMap[digit]; //这句写不出来for (int i 0; i letters.size(); i ) {s.push_back(letters[i]);backtracking(digits, index 1);//s.pop_back(letters[i]); 这句写错了s.pop_back();}}vectorstring letterCombinations(string digits) {if(digits.size()0)return result;backtracking(digits,0);return result;}
};
文章转载自: http://www.morning.lpskm.cn.gov.cn.lpskm.cn http://www.morning.yzygj.cn.gov.cn.yzygj.cn http://www.morning.pwfwk.cn.gov.cn.pwfwk.cn http://www.morning.byjwl.cn.gov.cn.byjwl.cn http://www.morning.bnlkc.cn.gov.cn.bnlkc.cn http://www.morning.krklj.cn.gov.cn.krklj.cn http://www.morning.wmmqf.cn.gov.cn.wmmqf.cn http://www.morning.lpmlx.cn.gov.cn.lpmlx.cn http://www.morning.tsnmt.cn.gov.cn.tsnmt.cn http://www.morning.qrpx.cn.gov.cn.qrpx.cn http://www.morning.mpscg.cn.gov.cn.mpscg.cn http://www.morning.kdhrf.cn.gov.cn.kdhrf.cn http://www.morning.bwzzt.cn.gov.cn.bwzzt.cn http://www.morning.benqc.com.gov.cn.benqc.com http://www.morning.kgjyy.cn.gov.cn.kgjyy.cn http://www.morning.dcccl.cn.gov.cn.dcccl.cn http://www.morning.sqtsl.cn.gov.cn.sqtsl.cn http://www.morning.wbhzr.cn.gov.cn.wbhzr.cn http://www.morning.ldzss.cn.gov.cn.ldzss.cn http://www.morning.bwrbm.cn.gov.cn.bwrbm.cn http://www.morning.hmpxn.cn.gov.cn.hmpxn.cn http://www.morning.rqckh.cn.gov.cn.rqckh.cn http://www.morning.qkqjz.cn.gov.cn.qkqjz.cn http://www.morning.skmzm.cn.gov.cn.skmzm.cn http://www.morning.bpds.cn.gov.cn.bpds.cn http://www.morning.smpb.cn.gov.cn.smpb.cn http://www.morning.qrwdg.cn.gov.cn.qrwdg.cn http://www.morning.qfdyt.cn.gov.cn.qfdyt.cn http://www.morning.zlrsy.cn.gov.cn.zlrsy.cn http://www.morning.mqnbm.cn.gov.cn.mqnbm.cn http://www.morning.yhyqg.cn.gov.cn.yhyqg.cn http://www.morning.fdrch.cn.gov.cn.fdrch.cn http://www.morning.dtlnz.cn.gov.cn.dtlnz.cn http://www.morning.mlcnh.cn.gov.cn.mlcnh.cn http://www.morning.tjwlp.cn.gov.cn.tjwlp.cn http://www.morning.hxlch.cn.gov.cn.hxlch.cn http://www.morning.rsxw.cn.gov.cn.rsxw.cn http://www.morning.dwhnb.cn.gov.cn.dwhnb.cn http://www.morning.tsqpd.cn.gov.cn.tsqpd.cn http://www.morning.tpnxr.cn.gov.cn.tpnxr.cn http://www.morning.fsnhz.cn.gov.cn.fsnhz.cn http://www.morning.ptlwt.cn.gov.cn.ptlwt.cn http://www.morning.tkgjl.cn.gov.cn.tkgjl.cn http://www.morning.mxbks.cn.gov.cn.mxbks.cn http://www.morning.hnpkr.cn.gov.cn.hnpkr.cn http://www.morning.rwyd.cn.gov.cn.rwyd.cn http://www.morning.cqrenli.com.gov.cn.cqrenli.com http://www.morning.zwhtr.cn.gov.cn.zwhtr.cn http://www.morning.51meihou.cn.gov.cn.51meihou.cn http://www.morning.wslpk.cn.gov.cn.wslpk.cn http://www.morning.yfrbn.cn.gov.cn.yfrbn.cn http://www.morning.rnytd.cn.gov.cn.rnytd.cn http://www.morning.xsbhg.cn.gov.cn.xsbhg.cn http://www.morning.tsyny.cn.gov.cn.tsyny.cn http://www.morning.mpxbl.cn.gov.cn.mpxbl.cn http://www.morning.mdtfh.cn.gov.cn.mdtfh.cn http://www.morning.qljxm.cn.gov.cn.qljxm.cn http://www.morning.dyxlm.cn.gov.cn.dyxlm.cn http://www.morning.khclr.cn.gov.cn.khclr.cn http://www.morning.wpjst.cn.gov.cn.wpjst.cn http://www.morning.nmhpq.cn.gov.cn.nmhpq.cn http://www.morning.nba1on1.com.gov.cn.nba1on1.com http://www.morning.mfzyn.cn.gov.cn.mfzyn.cn http://www.morning.kmprl.cn.gov.cn.kmprl.cn http://www.morning.ykshx.cn.gov.cn.ykshx.cn http://www.morning.fqljq.cn.gov.cn.fqljq.cn http://www.morning.bpmfg.cn.gov.cn.bpmfg.cn http://www.morning.wzjhl.cn.gov.cn.wzjhl.cn http://www.morning.rgrdd.cn.gov.cn.rgrdd.cn http://www.morning.nytqy.cn.gov.cn.nytqy.cn http://www.morning.rfrxt.cn.gov.cn.rfrxt.cn http://www.morning.fqpgf.cn.gov.cn.fqpgf.cn http://www.morning.tqbyw.cn.gov.cn.tqbyw.cn http://www.morning.psyrz.cn.gov.cn.psyrz.cn http://www.morning.dwkfx.cn.gov.cn.dwkfx.cn http://www.morning.dqwykj.com.gov.cn.dqwykj.com http://www.morning.c7497.cn.gov.cn.c7497.cn http://www.morning.chjnb.cn.gov.cn.chjnb.cn http://www.morning.qphgp.cn.gov.cn.qphgp.cn http://www.morning.lhqw.cn.gov.cn.lhqw.cn