class Solution { vector<string> ans; public: /** * * @param s string字符串 * @return string字符串vector */ vector<string> restoreIpAddresses(string s) { // write code here dfs(s, 0, 0, ""); return ans; } // u是搜索的字符串的位置,k是已经划分的数字个数 ...