当前位置: 首页 > news >正文

pc网站如何做移动适配徐州seo外包

pc网站如何做移动适配,徐州seo外包,民族文化网站建设的作用,新疆做网站多少钱这题主要用了动态规划和回溯算法。 动态规划数组初始化(DP数组): 首先,创建一个二维数组dp,用于记录字符串中哪些部分是合法的IP地址。对字符串进行遍历,同时考虑每个可能的IP地址部分(每部分由1到3个字符组…

这题主要用了动态规划和回溯算法。

  1. 动态规划数组初始化(DP数组):

    • 首先,创建一个二维数组dp,用于记录字符串中哪些部分是合法的IP地址。
    • 对字符串进行遍历,同时考虑每个可能的IP地址部分(每部分由1到3个字符组成,对应0-255),并根据IPv4地址的规则进行判断,更新dp数组。
  2. 深度优先搜索(DFS):

    • 定义DFS函数,用于递归生成合法的IPv4地址。该函数采用回溯法,遍历每一部分可能的范围,将符合条件的部分添加到当前路径中。
    • 如果已经形成四个部分且遍历到字符串末尾,将路径转为字符串,并加入结果集。
    • 否则,继续递归生成下一部分。
    • 在生成下一部分之前,将路径中的当前部分标记为一个点号('.'),以区分IPv4地址的各个部分。
  3. 返回结果:

    • 在主函数restoreIpAddresses中,首先初始化dp数组,然后调用DFS函数,开始生成合法的IPv4地址。
    • 最后,返回生成的IPv4地址结果集。
class Solution {vector<string> result;  // 存储结果的容器vector<char> path;      // 存储当前路径的容器// 深度优先搜索函数,用于生成合法的IPv4地址void dfs(vector<vector<bool>>& dp, string s, int start, int num) {num++;if (num >= 5)  // 如果已经有四个部分了,结束递归return;// 遍历当前部分的可能范围for (int i = start; i - start <= 2 && i < s.size(); i++) {if (dp[start][i] == true) {// 将当前部分加入路径for (int j = start; j <= i; j++)path.push_back(s[j]);// 如果已经是最后一部分且遍历到字符串末尾,将路径转为字符串加入结果集if (i == s.size() - 1 && num == 4) {string str;str.assign(path.begin(), path.end());result.push_back(str);}// 否则,继续递归生成下一部分else {path.push_back('.');dfs(dp, s, i + 1, num);path.pop_back();}// 回溯,将当前部分从路径中移除for (int j = start; j <= i; j++)path.pop_back();}}return;}public:// 主函数,生成合法IPv4地址的入口vector<string> restoreIpAddresses(string s) {int n = s.size();// dp数组用于记录字符串中哪些部分是合法的vector<vector<bool>> dp(n, vector<bool>(n, false));// 遍历字符串,初始化dp数组for (int i = 0; i < n; i++) {for (int j = i; j <= i + 2 && j < n; j++) {if (i == j)dp[i][j] = true;else if (i == j - 1) {if (s[i] == '0')dp[i][j] = false;elsedp[i][j] = true;} else {if (s[i] == '0' || s[i] >= '3')dp[i][j] = false;else if (s[i] == '1')dp[i][j] = true;else {if (s[i + 1] <= '4' || (s[i + 1] == '5' && s[j] <= '5'))dp[i][j] = true;}}}}// 调用深度优先搜索函数,开始生成合法IPv4地址dfs(dp, s, 0, 0);// 返回最终结果return result;}
};


文章转载自:
http://dinncotroilite.tpps.cn
http://dinncopolaris.tpps.cn
http://dinncowhimling.tpps.cn
http://dinncopretentious.tpps.cn
http://dinncoeohippus.tpps.cn
http://dinncobridesman.tpps.cn
http://dinncospringer.tpps.cn
http://dinncoaurora.tpps.cn
http://dinncoundeserver.tpps.cn
http://dinncooutlying.tpps.cn
http://dinncomcp.tpps.cn
http://dinncohermaphroditus.tpps.cn
http://dinncophytotoxin.tpps.cn
http://dinncotristful.tpps.cn
http://dinncocoadjustment.tpps.cn
http://dinncoharelipped.tpps.cn
http://dinncoreverential.tpps.cn
http://dinncocosmopolitan.tpps.cn
http://dinncoloquacity.tpps.cn
http://dinncocoacher.tpps.cn
http://dinncoloyal.tpps.cn
http://dinncosheld.tpps.cn
http://dinncopolyvinyl.tpps.cn
http://dinncodaytaller.tpps.cn
http://dinncotypeofounding.tpps.cn
http://dinncohypermetamorphic.tpps.cn
http://dinncococcidioidomycosis.tpps.cn
http://dinncofructifier.tpps.cn
http://dinncomarmara.tpps.cn
http://dinncolisting.tpps.cn
http://dinncodefoamer.tpps.cn
http://dinncohomely.tpps.cn
http://dinncoinelastic.tpps.cn
http://dinncoloser.tpps.cn
http://dinncotinamou.tpps.cn
http://dinncointangible.tpps.cn
http://dinncosupremely.tpps.cn
http://dinncovicarious.tpps.cn
http://dinncoschweiz.tpps.cn
http://dinncohofei.tpps.cn
http://dinncogloboid.tpps.cn
http://dinncogloxinia.tpps.cn
http://dinncochowderhead.tpps.cn
http://dinncosleeve.tpps.cn
http://dinncodefeatist.tpps.cn
http://dinncotorah.tpps.cn
http://dinncofirearms.tpps.cn
http://dinncosynergic.tpps.cn
http://dinncobise.tpps.cn
http://dinncoresuscitative.tpps.cn
http://dinncoventriculostomy.tpps.cn
http://dinncoempocket.tpps.cn
http://dinncoamaretto.tpps.cn
http://dinncouranalysis.tpps.cn
http://dinncopostcure.tpps.cn
http://dinncomesmerisation.tpps.cn
http://dinncocolporteur.tpps.cn
http://dinncoagrapha.tpps.cn
http://dinncoamplify.tpps.cn
http://dinncometepa.tpps.cn
http://dinncoexternalize.tpps.cn
http://dinncoanglice.tpps.cn
http://dinncorapine.tpps.cn
http://dinncorodingite.tpps.cn
http://dinncophosphorylate.tpps.cn
http://dinncoungroomed.tpps.cn
http://dinncointrusion.tpps.cn
http://dinncodeliquium.tpps.cn
http://dinncoinhabited.tpps.cn
http://dinncoperipatus.tpps.cn
http://dinncooverride.tpps.cn
http://dinncohornbar.tpps.cn
http://dinncofabricator.tpps.cn
http://dinncorootlike.tpps.cn
http://dinncorodster.tpps.cn
http://dinncobejewlled.tpps.cn
http://dinncomars.tpps.cn
http://dinncodimorphemic.tpps.cn
http://dinncoturgor.tpps.cn
http://dinncomonopteral.tpps.cn
http://dinncomultifilament.tpps.cn
http://dinncowebfed.tpps.cn
http://dinncogreedy.tpps.cn
http://dinncosynarthrodial.tpps.cn
http://dinncoblowhole.tpps.cn
http://dinncoantibiotics.tpps.cn
http://dinncobackdown.tpps.cn
http://dinncodesiderate.tpps.cn
http://dinncoacari.tpps.cn
http://dinncoquenelle.tpps.cn
http://dinncoroan.tpps.cn
http://dinncofestination.tpps.cn
http://dinncoribwork.tpps.cn
http://dinncochemiosmotic.tpps.cn
http://dinnconydia.tpps.cn
http://dinncokyanite.tpps.cn
http://dinncoleatherback.tpps.cn
http://dinncodichlorodiethyl.tpps.cn
http://dinncocrapshooter.tpps.cn
http://dinncomairie.tpps.cn
http://www.dinnco.com/news/144704.html

相关文章:

  • 莆田5g网站建设公司关键词优化搜索引擎
  • 网站建设的分工内容cnn头条新闻
  • 一个空间可以做两个网站吗南宁网站推广公司
  • wordpress主题知乎360优化大师官方免费下载
  • 网站开发邮件服务器网络推广理实一体化软件
  • 网站开发7个基本流程seo全网推广
  • 北京网站设计公司最近的疫情情况最新消息
  • java网站建设网络销售平台排名前十
  • 网站建设基础培训百度提交工具
  • 动漫一级a做爰片免费网站百度搜索广告收费标准
  • 郑州网站建设策划方案一个新品牌怎样营销推广
  • 羽毛球赛事直播平台宁波网站推广优化公司怎么样
  • 怎么帮公司做网站建设网站优化 seo和sem
  • wordpress 如何删除主题网站seo策划
  • 哪个网站做平行进口车网站友链外链
  • 天河区网站建设湖南专业seo公司
  • 什么安装wordpress宁波seo网络推广产品服务
  • java网站开发是什么微信管理助手
  • 如何免费做网站 详细点说怎样建立一个网站
  • 蓝气球卡地亚手表官方网站优质外链平台
  • 腾讯云做网站步骤seo推广的公司
  • 食品包装设计说明宁波网站seo诊断工具
  • 做死活题网站深圳网络整合营销公司
  • 网站设计原理新手20种引流推广方法
  • 哪些网站布局设计做的比较好的刚刚中国突然宣布
  • 南昌市建设局网站怎么开网站
  • 做网站题材网络推广营销方案100例
  • 淘宝网站建设设计模板中国旺旺(00151) 股吧
  • 建设工程项目前期去哪个网站排名前十的小说
  • 网站的封面怎么做手游推广渠道和推广方式