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

首頁 > 學院 > 開發設計 > 正文

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

2019-11-09 20:44:53
字體:
來源:轉載
供稿:網友

題目內容

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. 題目原文

題目簡述

從上到下寫出二叉樹每層最右側節點對應的數值

題目分析

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

代碼示例

/** * 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; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 健康| 确山县| 宜州市| 安宁市| 波密县| 广宗县| 广水市| 姚安县| 阜阳市| 南溪县| 阿勒泰市| 胶州市| 桐城市| 葫芦岛市| 交口县| 丹东市| 昭觉县| 泰兴市| 永平县| 河西区| 永新县| 衡山县| 安化县| 唐河县| 阳东县| 防城港市| 秦安县| 桐庐县| 蚌埠市| 东丰县| 牙克石市| 富裕县| 柏乡县| 安仁县| 清水县| 瑞丽市| 白水县| 上饶县| 安阳县| 固始县| 高安市|