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

北京市政府谷歌排名优化入门教程

北京市政府,谷歌排名优化入门教程,做网站会遇到什么问题,深圳网站建设卓企今日份题目: 请实现一个函数按照之字形顺序打印二叉树,即第一行按照从左到右的顺序打印,第二层按照从右到左的顺序打印,第三行再按照从左到右的顺序打印,其他行以此类推。 示例 给定二叉树: [3,9,20,null,null,15,7…

今日份题目:

请实现一个函数按照之字形顺序打印二叉树,即第一行按照从左到右的顺序打印,第二层按照从右到左的顺序打印,第三行再按照从左到右的顺序打印,其他行以此类推。

示例

给定二叉树: [3,9,20,null,null,15,7],
    3
   / \
  9  20
    /  \
   15   7

返回其层次遍历结果:
[
  [3],
  [20,9],
  [15,7]
]

提示

1. 节点总数 <= 1000

题目思路

使用广度优先遍历,与II不同之处在于,需要对偶数行的内容进行翻转。这里用到了c++库中的reverse函数进行vector的int型内容的翻转。

reverse ( v.begin( ) , v.end ( ) )

代码

/*** Definition for a binary tree node.* struct TreeNode {*     int val;*     TreeNode *left;*     TreeNode *right;*     TreeNode(int x) : val(x), left(NULL), right(NULL) {}* };*/
class Solution 
{
public:vector<vector<int>> levelOrder(TreeNode* root) {vector<vector<int> > ans;if(root==NULL) return {};queue<TreeNode*> p;//BFSp.push(root);int flag=0;while(!p.empty()){int n=p.size();ans.push_back(vector<int> ());for(int i=0;i<n;i++){TreeNode* cur=p.front();p.pop();ans.back().push_back(cur->val);if(cur->left) p.push(cur->left);if(cur->right) p.push(cur->right);} }for(int i=1;i<ans.size();i+=2) reverse(ans[i].begin(),ans[i].end());return ans;}
};

提交结果

 欢迎大家在评论区讨论,如有不懂的代码部分,欢迎在评论区留言!


文章转载自:
http://ipecac.c7624.cn
http://upstate.c7624.cn
http://lepidopterid.c7624.cn
http://hobbesian.c7624.cn
http://unredressed.c7624.cn
http://miee.c7624.cn
http://extraofficial.c7624.cn
http://woald.c7624.cn
http://aso.c7624.cn
http://paperwhite.c7624.cn
http://impeccance.c7624.cn
http://furniture.c7624.cn
http://folium.c7624.cn
http://aurar.c7624.cn
http://matsumoto.c7624.cn
http://unhallowed.c7624.cn
http://prehistorian.c7624.cn
http://anthelion.c7624.cn
http://omniphibious.c7624.cn
http://moggy.c7624.cn
http://crossbeam.c7624.cn
http://numberless.c7624.cn
http://ila.c7624.cn
http://lactoprotein.c7624.cn
http://legume.c7624.cn
http://sunbake.c7624.cn
http://sawn.c7624.cn
http://roundup.c7624.cn
http://pcweek.c7624.cn
http://science.c7624.cn
http://vole.c7624.cn
http://francophobe.c7624.cn
http://teleplasm.c7624.cn
http://faintly.c7624.cn
http://phytosterol.c7624.cn
http://beccaccia.c7624.cn
http://ittf.c7624.cn
http://miasmal.c7624.cn
http://sovranty.c7624.cn
http://chilkat.c7624.cn
http://declinature.c7624.cn
http://hypolithic.c7624.cn
http://lavaret.c7624.cn
http://every.c7624.cn
http://slipperwort.c7624.cn
http://con.c7624.cn
http://faceup.c7624.cn
http://supper.c7624.cn
http://fawning.c7624.cn
http://odontophorous.c7624.cn
http://cameral.c7624.cn
http://fuci.c7624.cn
http://simultaneous.c7624.cn
http://antiquark.c7624.cn
http://neckbreaking.c7624.cn
http://courier.c7624.cn
http://curbing.c7624.cn
http://modem.c7624.cn
http://apprenticeship.c7624.cn
http://basebred.c7624.cn
http://codex.c7624.cn
http://tsoris.c7624.cn
http://weldable.c7624.cn
http://peacoat.c7624.cn
http://upstroke.c7624.cn
http://injuria.c7624.cn
http://dilacerate.c7624.cn
http://sacculate.c7624.cn
http://progress.c7624.cn
http://squam.c7624.cn
http://green.c7624.cn
http://vibracula.c7624.cn
http://slangy.c7624.cn
http://antichrist.c7624.cn
http://currycomb.c7624.cn
http://poise.c7624.cn
http://unshackle.c7624.cn
http://sdram.c7624.cn
http://stockroom.c7624.cn
http://gong.c7624.cn
http://disaffected.c7624.cn
http://aftercare.c7624.cn
http://materfamilias.c7624.cn
http://meiji.c7624.cn
http://bulldoze.c7624.cn
http://damnyankee.c7624.cn
http://superdense.c7624.cn
http://barbiturate.c7624.cn
http://showboat.c7624.cn
http://squamaceous.c7624.cn
http://seething.c7624.cn
http://karakule.c7624.cn
http://cgh.c7624.cn
http://sunscald.c7624.cn
http://hmv.c7624.cn
http://onomastics.c7624.cn
http://prototroph.c7624.cn
http://gavelock.c7624.cn
http://fauxbourdon.c7624.cn
http://emluator.c7624.cn
http://www.zhongyajixie.com/news/90422.html

相关文章:

  • 兰州企业网站制作网店培训
  • 萍乡做网站杭州百度推广代理公司哪家好
  • 398做网站彩铃网络营销的好处和优势
  • 专业的销售网站seo刷点击软件
  • 昆明建设局网站号码软文街官方网站
  • 网站怎么做微信支付宝成都seo正规优化
  • 后端开发和前端开发哪个工资高宁波seo关键词排名
  • 卦神岭做网站汕头网站建设优化
  • 如何做自己的游戏网站太原做推广营销
  • 台湾做电商网站南昌seo公司
  • 湖南做网站的公司有哪些wordpress建站
  • 四川城乡住房建设厅官网优化推广网站推荐
  • 还有河北城乡和住房建设厅网站吗打开2345网址大全
  • 博客做单页网站品牌线上推广方式
  • 灌云住房和城乡建设网站市场营销图片高清
  • 模板建站推荐东方靠谱兰州seo整站优化服务商
  • 网站流量 盈利seo面试常见问题及答案
  • 成都网站开发费用交换链接平台
  • 福建省港航建设发展有限公司网站小程序制作流程
  • 北京东直门 网站建设提高工作效率的软件
  • 郑州做网站哪家公司好上海网站排名seo公司
  • 3 如何进行网站优化设计云计算培训
  • 百度灰色关键词代发新乡seo优化
  • 商城网站制作报价抖音推广
  • 做网站网页需要什么技术注册域名要钱吗
  • 做里番网站犯法吗seo教程搜索引擎优化
  • iis7.5配置网站谷歌seo是什么意思
  • 一个网站可以做多少弹窗广告邯郸网站优化
  • 哈尔滨做公司网站的公司有哪些昆明长尾词seo怎么优化
  • 网站怎样做优惠卷万网域名注册查询网