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

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

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

2019-11-10 16:45:24
字體:
供稿:網(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)對(duì)應(yīng)的數(shù)值

題目分析

按層次遞歸,并將層數(shù)作為遞歸變量使每層只記錄一個(gè)數(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; }};
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 罗城| 富川| 嘉荫县| 丹寨县| 儋州市| 淄博市| 留坝县| 班戈县| 安福县| 张北县| 茶陵县| 祥云县| 象山县| 东明县| 阳春市| 个旧市| 陇南市| 乃东县| 乌海市| 叶城县| 大邑县| 景德镇市| 南宫市| 布拖县| 普宁市| 元谋县| 海淀区| 包头市| 河曲县| 扬州市| 辉南县| 锡林郭勒盟| 泗水县| 临邑县| 大姚县| 沙河市| 临沂市| 上蔡县| 漾濞| 盱眙县| 吉安市|