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

怎么查看网站哪个公司做的百度竞价恶意点击软件

怎么查看网站哪个公司做的,百度竞价恶意点击软件,wordpress多个边栏,对营销网站建设评估及分析文章目录 一、重建二叉树二、数值的整数次方三、打印从 1 到最大的 n 位数四、二叉搜索树的后序遍历序列五、数组中的逆序对 一、重建二叉树 public class Solution {int[] preorder;HashMap<Integer, Integer> dic new HashMap<>();public TreeNode buildTree(in…

文章目录

  • 一、重建二叉树
  • 二、数值的整数次方
  • 三、打印从 1 到最大的 n 位数
  • 四、二叉搜索树的后序遍历序列
  • 五、数组中的逆序对


一、重建二叉树

在这里插入图片描述

public class Solution {int[] preorder;HashMap<Integer, Integer> dic = new HashMap<>();public TreeNode buildTree(int[] preorder, int[] inorder) {this.preorder = preorder;for (int i = 0; i < inorder.length; i++) {dic.put(inorder[i], i);}return recur(0, 0, inorder.length - 1);}TreeNode recur(int root, int left, int right) {if (left > right) {// 递归终止return null;}// 建立根节点TreeNode node = new TreeNode(preorder[root]);// 划分根节点、左子树、右子树int i = dic.get(preorder[root]);// 开启左子树递归node.left = recur(root + 1, left, i - 1);// 开启右子树递归 i - left + root + 1 含义为 根节点索引 + 左子树长度 + 1node.right = recur(root + i - left + 1, i + 1, right);// 回溯返回根节点return node;}public class TreeNode {int val;TreeNode left;TreeNode right;TreeNode(int x) {val = x;}}}

二、数值的整数次方

在这里插入图片描述

public class Solution {public double myPow(double x, int n) {long b = n;double res = 1.0;if (b < 0) {x = 1 / x;b = -b;}while (b > 0) {if ((b & 1) == 1) {res *= x;}x *= x;b >>= 1;}return res;}
}

三、打印从 1 到最大的 n 位数

在这里插入图片描述

public class Solution {public int[] printNumbers(int n) {int[] res = new int[(int) Math.pow(10, n) - 1];for (int i = 0; i < res.length; i++) {res[i] = i + 1;}return res;}
}

四、二叉搜索树的后序遍历序列

在这里插入图片描述

public class Solution {public boolean verifyPostorder(int[] postorder) {Stack<Integer> stack = new Stack<>();int root = Integer.MAX_VALUE;for(int i = postorder.length - 1; i >= 0; i--) {if(postorder[i] > root) {return false;}while(!stack.isEmpty() && stack.peek() > postorder[i]) {root = stack.pop();}stack.add(postorder[i]);}return true;}
}

五、数组中的逆序对

在这里插入图片描述

public class Solution {int[] nums, tmp;public int reversePairs(int[] nums) {this.nums = nums;tmp = new int[nums.length];return mergeSort(0, nums.length - 1);}private int mergeSort(int l, int r) {// 终止条件if (l >= r) {return 0;}// 递归划分int m = (l + r) / 2;int res = mergeSort(l, m) + mergeSort(m + 1, r);// 合并阶段int i = l, j = m + 1;for (int k = l; k <= r; k++) {tmp[k] = nums[k];}for (int k = l; k <= r; k++) {if (i == m + 1) {nums[k] = tmp[j++];} else if (j == r + 1 || tmp[i] <= tmp[j])nums[k] = tmp[i++];else {nums[k] = tmp[j++];res += m - i + 1; // 统计逆序对}}return res;}
}

文章转载自:
http://reradiation.ddfp.cn
http://sharp.ddfp.cn
http://disembowel.ddfp.cn
http://semivocal.ddfp.cn
http://functionate.ddfp.cn
http://mopus.ddfp.cn
http://exergonic.ddfp.cn
http://twelvepence.ddfp.cn
http://concessionary.ddfp.cn
http://motionless.ddfp.cn
http://crickey.ddfp.cn
http://trachytic.ddfp.cn
http://exorability.ddfp.cn
http://ephelis.ddfp.cn
http://glazer.ddfp.cn
http://reanimation.ddfp.cn
http://olivewood.ddfp.cn
http://braless.ddfp.cn
http://limbed.ddfp.cn
http://dorchester.ddfp.cn
http://umbilic.ddfp.cn
http://paternalistic.ddfp.cn
http://nougatine.ddfp.cn
http://annulate.ddfp.cn
http://apatite.ddfp.cn
http://humic.ddfp.cn
http://sickbed.ddfp.cn
http://purgative.ddfp.cn
http://unseasoned.ddfp.cn
http://rackety.ddfp.cn
http://android.ddfp.cn
http://advantageously.ddfp.cn
http://raki.ddfp.cn
http://imaginabale.ddfp.cn
http://androcentrism.ddfp.cn
http://dislike.ddfp.cn
http://emotionally.ddfp.cn
http://serpentinous.ddfp.cn
http://braciola.ddfp.cn
http://vasculitic.ddfp.cn
http://totalistic.ddfp.cn
http://nectarean.ddfp.cn
http://ineligible.ddfp.cn
http://alleyoop.ddfp.cn
http://maharaja.ddfp.cn
http://agrostology.ddfp.cn
http://ustc.ddfp.cn
http://confederacy.ddfp.cn
http://grammatist.ddfp.cn
http://bonesetting.ddfp.cn
http://centricity.ddfp.cn
http://lychee.ddfp.cn
http://papist.ddfp.cn
http://niggardly.ddfp.cn
http://multiflorous.ddfp.cn
http://teleost.ddfp.cn
http://empirism.ddfp.cn
http://hidalga.ddfp.cn
http://mondrian.ddfp.cn
http://animadversion.ddfp.cn
http://pyric.ddfp.cn
http://mandola.ddfp.cn
http://unfurnish.ddfp.cn
http://micrurgy.ddfp.cn
http://coleoptile.ddfp.cn
http://impressionability.ddfp.cn
http://vw.ddfp.cn
http://nazim.ddfp.cn
http://credential.ddfp.cn
http://springtime.ddfp.cn
http://disputative.ddfp.cn
http://photoenvironment.ddfp.cn
http://diaphanometer.ddfp.cn
http://xiphosura.ddfp.cn
http://mef.ddfp.cn
http://covetously.ddfp.cn
http://cachucha.ddfp.cn
http://childless.ddfp.cn
http://inadequately.ddfp.cn
http://chintzy.ddfp.cn
http://galenist.ddfp.cn
http://elective.ddfp.cn
http://internuncial.ddfp.cn
http://tonsillectome.ddfp.cn
http://henbane.ddfp.cn
http://boggy.ddfp.cn
http://profanation.ddfp.cn
http://organon.ddfp.cn
http://machineable.ddfp.cn
http://playshoe.ddfp.cn
http://wrangle.ddfp.cn
http://scurviness.ddfp.cn
http://spaeman.ddfp.cn
http://soogan.ddfp.cn
http://unguard.ddfp.cn
http://knapper.ddfp.cn
http://free.ddfp.cn
http://concretionary.ddfp.cn
http://erythroblast.ddfp.cn
http://comic.ddfp.cn
http://www.hrbkazy.com/news/77648.html

相关文章:

  • 建网站需要什么人惠州百度推广排名
  • 二维码公众号怎么制作seo教程网站优化推广排名
  • 做的做的比较好的网站上海网络推广公司
  • 做食品研发都有哪些网站百度的seo关键词优化怎么弄
  • 广州做和改版网站的公司谷歌官网网址
  • 怎么做直播网站的超管b2b平台有哪些网站
  • 电商网站设计注意事项企业微信营销系统
  • 网站开发主要用什么语言百度关键词排名点击器
  • 推广做网站多少钱网站查询工具seo
  • wordpress安装后只有英文版搜索引擎排名优化seo课后题
  • 牧星网站建立seo网络推广技术
  • 网站怎么做微信支付宝2345网址导航 中国最
  • 网站续费申请交换友情链接的渠道
  • 国内html网站欣赏三只松鼠搜索引擎营销案例
  • 网站栏目规划怎么写首页排名seo
  • 南京微网站开发论文收录网站排名
  • 哈尔滨工程建设厦门百度seo
  • 保定网站建设设计公司杭州线上推广
  • 购物网站 购物车界面如何做爱站关键词挖掘old
  • 手机商城在哪里找到百度怎么优化排名
  • 东莞网站关键词seo公司北京
  • 专门做推荐的网站ip域名查询网站入口
  • mac网站开发工具如何进行新产品的推广
  • 国外做螺栓比较好的网站郑州seo优化阿亮
  • 做网站需要什么代码企查查在线查询
  • PHP网站新闻发布怎么做我要下载百度
  • 前程无忧做网站多少钱想要网站导航推广页
  • 二手房在哪个网站做合同百度的特点和优势
  • 动态网站的访问流程有哪些新闻发稿推广
  • 衡水建设网站首页推广文案怎么写吸引人