题解 | #牛群仰视图#
牛群仰视图
https://www.nowcoder.com/practice/0f37a18320c4466abf3a65819592e8be
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * }; */ #include <vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param root TreeNode类 * @return int整型vector */ void dfs(TreeNode* root, vector<int>& v) { if(!root) return; if(!root->left && !root->right) v.emplace_back(root->val); dfs(root->left, v); dfs(root->right, v); } vector<int> bottomView(TreeNode* root) { // write code here // 深度优先搜索 vector<int> v; dfs(root, v); return v; } };
虚数五行区解题中心 文章被收录于专栏
非淡泊无以明志,非宁静无以致远