qt ip地址截取前三个点_递归回溯复原IP地址

一句话经验

There is no coming to consciousness without pain.

没有任何一种觉醒是不带着痛苦的

一、题目描述

93. 复原IP地址
  • 放轻松,虽然是c++实现,拒绝奇技淫巧,通俗易懂。

    class Solution {
    public:
        vector<string> restoreIpAddresses(string s) {
         
          vector<string> res;//输出结果
          vector<string> path;//栈保持路径
         
         //从位置0 遍历每个字符串
          dfs(s,0,0,path,res);
          return res;
        }

        void dfs(string s,int start,int depth ,vector<string> &path, vector<string> & res){   

            if (start >s.size())
             {
                 return ;//字符串遍历完毕
             }

            //递归结束条件01
            //选取4组后,还有剩余元素 肯定无法组成ip。剪枝
             if ( 4 ==depth &&  start           {
                 return ;
             }
             递归结束条件02 寻找叶子节点。
             if ( 4 ==depth &&  start  == s.size() )
             {
                //拼成ip
               string str=path[0];
               for (int i = 1;i<4;++i) {
                   str = str + '.' + path[i];
               }
               res.push_back(str);//ans中保存一种可行方案
               return; 
             }
             //
           
              // 递归变化条件 {2 5 5}
              //每一个string只能存长度1~3的字符串
             for(int i=1;i<4;i++)
             {
                 //获取当前组 元素 
                  string str = s.substr(start,i);//切割字符串
                  //约束条件:
                   if (i == 3 && atoi(str.c_str()) > 255) //不能大于255
                    return;

                    if (i != 1 && s[start] == '0') //01,001非法
                    return;
                  path.push_back(str);
                 
                 //下一组元素
                  dfs(s,start+i,depth+1,path,res);
                
                 //pop当前组 元素
                  path.pop_back();
             }

        }
    };
  • golang

func restoreIpAddresses(s string) []string {

    res:=make([]string,0) //符合高度为4的 3叉树的路径
    if len(s) > 12 {
        return res //过 12 位的肯定不能是 ip 地址,最大就是 255.255.255.255
    }

    path :=make([]string,0) //用栈进行回溯

    dfs(s,0,0,&path,&res) //空指针修改

    return res

}

func dfs(s string, start int,depth int,path* []string, res *[]string){
    //01 越界
     if start >len(s) {
         return 
     }
    if 4 == depth {
        //02 剪枝 [2.5.5.2.551113]
        if start <len(s) {
            return 
        }
        //03 符合条件的路径 "255.255.111.35"
        if start ==len(s){
         tmp := strings.Join(*path, ".")
         *res = append(*res, tmp)
         return 
        }
    }

    //循环处理

    for i:=1;i<4;i++{
        if start+i >len(s) {
            return 
        }
        temp :=s[start:start+i] //左闭右开
         //01 001 
        if i!=1 && s[start] =='0' {
            return 
        }
        if i==3 {
          ip, _ := strconv.Atoi(temp);
          if ip >255{
              continue;
          }
        }
     //

        *path = append(*path, temp) //插入最后一个元素
    
         dfs(s, start+i, depth+1,path,res)
        
        //删除最后一个记录,回溯使用
         *path = (*path)[:len((*path))-1]
        }
    }
  • 累计耗时 25×6

二、测试用例

给定一个只包含数字的字符串,复原它并返回所有可能的 IP 地址格式。

有效的 IP 地址正好由四个整数(每个整数位于 0 到 255 之间组成),整数之间用 '.' 分隔。

输入: "25525511135"
输出: ["255.255.11.135", "255.255.111.35"]

思考 60秒 。。。

思考 60秒 。。

三、思路分析

最迷惑地方
  • 看到ip问题,思路模糊,感觉无从下手,虽然是不断拆分字符,但是无法用语言描述。
  • 一个字符串拆分 3个部分,感觉无数可能,无法头脑计算出来,也是无法自己看成来的
  • 如何遍历这样情况,for循环好像解决不了这个问题
  • 如何组成ip地址
  • 如何截取字符。
熟悉的子问题
  • 这是一个字符串,长度从0到n。每个n有三个选择, ---tree
  1. 选 "2" 作为第一个片段

  2. 选 "25" 作为第一个片段

  3. 选 "255" 作为第一个片段

  • ip 4个部分组成,一个tree的路径最大长度为4  --如果还剩余字符剪枝
步骤描述
  • 参考 https://leetcode-cn.com/problems/restore-ip-addresses/solution/shou-hua-tu-jie-huan-yuan-dfs-hui-su-de-xi-jie-by-/
0add92d9c693693e2729925acc4cc6db.png
来源:https://leetcode-cn.com/problems/restore-ip-addresses/solution/shou-hua-tu-jie-huan-yuan-dfs-hui-su-de-xi-jie-by-/
434d7bb8167dfbddd3124ec35d4aabf0.png
来源:https://leetcode-cn.com/problems/restore-ip-addresses/solution/shou-hua-tu-jie-huan-yuan-dfs-hui-su-de-xi-jie-by-/

四、举一反三

Permutations II

322. 零钱兑换

分享最实用的经验 , 希望每一位来访的朋友都能有所收获!

如果有疑问请联系我,一起探讨,进步。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值