国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

[LeetCode 199] Binary Tree Right Side View (遞歸的層數(shù))

2019-11-10 19:04:56
字體:
供稿:網(wǎng)友

題目內(nèi)容

199 Binary Tree Right Side View Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.

For example: Given the following binary tree,

1 <— / / 2 3 <— / / 5 4 <—

You should return [1, 3, 4].

Credits: Special thanks to @amrsaqr for adding this PRoblem and creating all test cases. 題目原文

題目簡述

從上到下寫出二叉樹每層最右側(cè)節(jié)點(diǎn)對應(yīng)的數(shù)值

題目分析

按層次遞歸,并將層數(shù)作為遞歸變量使每層只記錄一個數(shù)值,從右至左遍歷則使每層右邊節(jié)點(diǎn)最先遍歷,該節(jié)點(diǎn)數(shù)值即可在本層唯一記錄。

代碼示例

/** * 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: void recursion(vector<int> &res,TreeNode *root,int level) { if(root==NULL) return; if(res.size()<level) res.push_back(root->val); recursion(res,root->right,level+1); recursion(res,root->left,level+1); } vector<int> rightSideView(TreeNode *root) { vector<int> res; recursion(res,root,1); return res; }};
上一篇:poj1552

下一篇:PAT甲級1068

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 奉节县| 安溪县| 闽侯县| 乐陵市| 富民县| 门源| 个旧市| 青阳县| 江川县| 锡林浩特市| 武宁县| 潞西市| 舒城县| 麻江县| 会昌县| 宜川县| 四子王旗| 邹平县| 杭州市| 营山县| 上栗县| 武汉市| 湟中县| 漠河县| 庄河市| 炎陵县| 营山县| 江山市| 咸丰县| 化德县| 永泰县| 抚顺市| 英山县| 重庆市| 临夏县| 山东省| 武穴市| 永泰县| 古蔺县| 杭锦旗| 舞阳县|