Skip to content

feat: add cpp solution to lcof2 problem: NO.046 #567

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions lcof2/剑指 Offer II 046. 二叉树的右侧视图/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,55 @@

```

### **C++**

```cpp
class Solution
{
public:
vector<int> rightSideView ( TreeNode* root )
{
vector<int> res;

if ( !root )
{
return res;
}

queue<TreeNode* > que;
que.push ( root );

while ( !que.empty() )
{
int size = que.size();

for ( int i = 0; i < size; i++ )
{
TreeNode* ptr = que.front();
que.pop();

if ( i == size - 1 )
{
res.push_back ( ptr->val );
}

if ( ptr->left )
{
que.push ( ptr->left );
}

if ( ptr-> right )
{
que.push ( ptr->right );
}
}
}

return res;
}
};
```

### **...**

```
Expand Down
44 changes: 44 additions & 0 deletions lcof2/剑指 Offer II 046. 二叉树的右侧视图/Solution.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
class Solution
{
public:
vector<int> rightSideView ( TreeNode* root )
{
vector<int> res;

if ( !root )
{
return res;
}

queue<TreeNode* > que;
que.push ( root );

while ( !que.empty() )
{
int size = que.size();

for ( int i = 0; i < size; i++ )
{
TreeNode* ptr = que.front();
que.pop();

if ( i == size - 1 )
{
res.push_back ( ptr->val );
}

if ( ptr->left )
{
que.push ( ptr->left );
}

if ( ptr-> right )
{
que.push ( ptr->right );
}
}
}

return res;
}
};