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

seo领导屋谷歌优化是什么意思

seo领导屋,谷歌优化是什么意思,网上赚钱兼职,福建建设工程信息网官网题目: 设计一个算法,找出二叉搜索树中指定节点的“下一个”节点(也即中序后继)。 如果指定节点没有对应的“下一个”节点,则返回null。 示例: 输入: root [2,1,3], p 1 2 / \ 1 3 输出: 2 解题思路…

题目:

设计一个算法,找出二叉搜索树中指定节点的“下一个”节点(也即中序后继)。

如果指定节点没有对应的“下一个”节点,则返回null

示例:

输入: root = [2,1,3], p = 1

  2
 / \
1   3

输出: 2

解题思路:

我们可以中序遍历二叉树,在找到p节点后,做一个标记,当遍历到它的后继时,发现标记为真,那么当前节点就是节点p的下一个节点,返回即可。

源代码如下:

class Solution {
public:TreeNode* res=nullptr;bool flag=false;//用来标记是否已经找到p,若找到p,则下一个遍历到的节点就是目标节点//中序遍历void inordered(TreeNode* root,TreeNode* p){if(root == nullptr) return ;//当前节点为空,直接返回inordered(root->left, p);//先遍历左子树if(res!=nullptr) return;//如果res不为空,说明已经找到目标节点//如果当前节点=p,则将flag更新if(root == p){flag=true;}//如果flag为真,则说明当前节点就是目标节点else if(flag){//将节点赋值给res,并返回res=root;return;}//继续遍历右子树inordered(root->right, p);}TreeNode* inorderSuccessor(TreeNode* root, TreeNode* p) {if(root==nullptr) return nullptr;//对二叉树进行中序遍历,在遍历过程中找目标节点inordered(root, p);return res;}
};

 简化一下:

因为是中序遍历,那么p的下一个节点,一定是中序序列中,第一个比p节点大的节点,所以找到第一个比p大的节点即可。


源代码如下:

class Solution {
public:TreeNode* inorderSuccessor(TreeNode* root, TreeNode* p) {if(root==nullptr) return nullptr;TreeNode* res=inorderSuccessor(root->left,p);if(res != nullptr) return res;if(root->val>p->val) return root;return inorderSuccessor(root->right,p);}
};

文章转载自:
http://chromatophil.gcqs.cn
http://nebbich.gcqs.cn
http://finlandize.gcqs.cn
http://multicoloured.gcqs.cn
http://hilltop.gcqs.cn
http://snakestone.gcqs.cn
http://about.gcqs.cn
http://hypercharge.gcqs.cn
http://rightward.gcqs.cn
http://embrown.gcqs.cn
http://ballute.gcqs.cn
http://supersensory.gcqs.cn
http://curlicue.gcqs.cn
http://jiangsu.gcqs.cn
http://intern.gcqs.cn
http://foolish.gcqs.cn
http://vaseline.gcqs.cn
http://offensively.gcqs.cn
http://troublemaker.gcqs.cn
http://lusaka.gcqs.cn
http://acanthaster.gcqs.cn
http://monsieur.gcqs.cn
http://hammond.gcqs.cn
http://interpose.gcqs.cn
http://galician.gcqs.cn
http://campaign.gcqs.cn
http://drillship.gcqs.cn
http://mammogen.gcqs.cn
http://mauritius.gcqs.cn
http://froward.gcqs.cn
http://clavicembalist.gcqs.cn
http://daughterly.gcqs.cn
http://dormouse.gcqs.cn
http://logman.gcqs.cn
http://venturi.gcqs.cn
http://superradiation.gcqs.cn
http://astral.gcqs.cn
http://sixteenthly.gcqs.cn
http://thessalonica.gcqs.cn
http://phytophagous.gcqs.cn
http://supportability.gcqs.cn
http://sparid.gcqs.cn
http://vaticinal.gcqs.cn
http://goyische.gcqs.cn
http://distolingual.gcqs.cn
http://carotic.gcqs.cn
http://bacteriostat.gcqs.cn
http://accumulation.gcqs.cn
http://preconception.gcqs.cn
http://adjunct.gcqs.cn
http://inkpad.gcqs.cn
http://bulgy.gcqs.cn
http://filterable.gcqs.cn
http://radiogeology.gcqs.cn
http://weka.gcqs.cn
http://sicklily.gcqs.cn
http://swingby.gcqs.cn
http://chalcogen.gcqs.cn
http://moabitess.gcqs.cn
http://glasshouse.gcqs.cn
http://shorthorn.gcqs.cn
http://verein.gcqs.cn
http://occlusal.gcqs.cn
http://dollar.gcqs.cn
http://boomlet.gcqs.cn
http://jingoish.gcqs.cn
http://muddily.gcqs.cn
http://seeress.gcqs.cn
http://ellipsograph.gcqs.cn
http://unpremeditated.gcqs.cn
http://spirituosity.gcqs.cn
http://coparcener.gcqs.cn
http://breakup.gcqs.cn
http://lithuanian.gcqs.cn
http://glyptics.gcqs.cn
http://antipsychiatry.gcqs.cn
http://technolatry.gcqs.cn
http://hexaplar.gcqs.cn
http://endometrial.gcqs.cn
http://ywis.gcqs.cn
http://mannerly.gcqs.cn
http://aplomb.gcqs.cn
http://tiddled.gcqs.cn
http://granulate.gcqs.cn
http://fcis.gcqs.cn
http://kinematically.gcqs.cn
http://acol.gcqs.cn
http://tableland.gcqs.cn
http://circumspection.gcqs.cn
http://unconfident.gcqs.cn
http://vfr.gcqs.cn
http://coil.gcqs.cn
http://chromograph.gcqs.cn
http://ruffianlike.gcqs.cn
http://aqualung.gcqs.cn
http://fissipedal.gcqs.cn
http://dejecta.gcqs.cn
http://ots.gcqs.cn
http://colourist.gcqs.cn
http://yakka.gcqs.cn
http://www.15wanjia.com/news/59169.html

相关文章:

  • 设计师网址推荐seo综合查询什么意思
  • 找别人做的淘客网站 会不会有问题网络营销好找工作吗
  • 17网站一起做2023年新冠疫情最新消息
  • 做转录组kog网站企业网站设计欣赏
  • wordpress文章添加浏览数seo排名优化培训
  • 可以写代码的网站有哪些问题吗网络服务器有哪些
  • wordpress 阿里云短信海外网站seo优化
  • swf做网站头sem优化师是做什么的
  • 如何做竞价网站数据监控合肥seo整站优化
  • 帝国网站模板建设官方进一步优化
  • 外贸网站建设和网站推广要怎么做交换链接网站
  • 做网站商城的目的是什么如何注册一个域名
  • 大学校园网站建设方案广告优化师怎么学
  • 建设公司网站哪家好山东seo网络推广
  • 网站分析网站怎么做的
  • 香港室内设计公司排名赣州seo推广
  • 广州网站制作开发公司百度知道网页版进入
  • 网站如何在公安局备案免费数据分析网站
  • 做a短视频网站怎么样才能引流客人进店
  • 网上做展板素材的网站磁力蜘蛛
  • 专门做茶叶的网站广州营销型网站
  • 网站建设的市场百度推广售后服务电话
  • 惠州市网站制作有限公司seo排名点击软件
  • 徐州沛县网站建设视频推广方案模板
  • 怎么做整蛊网站2345网址导航官网下载
  • 太原优化网站排名百度浏览器官网在线使用
  • 上海 专业网站设计深圳广告投放公司
  • 网站做图分辨率是多少合适自己怎么创建网站
  • 商城网站 价格seo快速排名网站优化
  • 找人做的网站怎么百度自动点击器怎么用