题解 | #数字字符串转化成IP地址#

数字字符串转化成IP地址

https://www.nowcoder.com/practice/ce73540d47374dbe85b3125f57727e1e

#include <functional>
class Solution {
public:
    /**
     * 
     * @param s string字符串 
     * @return string字符串vector
     */
    vector<string> restoreIpAddresses(string s) {
        vector<string> res;
        function<void(int, int, string)> dfs = [&](int idx, int cnt, string path) -> void {
            if (cnt == 4 || idx == s.length()) {
                if (cnt == 4 && idx == s.length()) {
                    path.pop_back();
                    res.push_back(path);
                }
                return;
            }
            string tmp;
            if (s[idx] == '0') {
                dfs(idx + 1, cnt + 1, path + "0.");
                return;
            }
            for (int i = idx; i < s.length(); ++i) {
                tmp += s[i];
                if (stoi(tmp) > 255) break;
                dfs(i + 1, cnt + 1, path + tmp + ".");
            }
        };
        dfs(0, 0, "");
        return res;
    }
};

思路:递归。

将每一段控制在255以内,递归即可。

全部评论

相关推荐

联通 技术人员 总包不低于12
点赞 评论 收藏
分享
头像
10-09 19:35
门头沟学院 Java
洛必不可达:java的竞争激烈程度是其他任何岗位的10到20倍
点赞 评论 收藏
分享
1 1 评论
分享
牛客网
牛客企业服务