代码拉取完成,页面将自动刷新
/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* };
*/
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param pRoot TreeNode类
* @return int整型vector<vector<>>
*/
/**
先层序遍历,再翻转偶数行
*/
vector<vector<int> > Print(TreeNode* pRoot) {
// write code here
vector<vector<int>> ans;
if(!pRoot){
return ans;
}
queue<TreeNode *> que;
que.push(pRoot);
while(!que.empty()){
int cnt = que.size();
vector<int> tmp;
for(int i = 0; i < cnt; i++){
TreeNode* node = que.front();
que.pop();
tmp.push_back(node->val);
if(node->left){
que.push(node->left);
}
if(node->right){
que.push(node->right);
}
}
ans.push_back(tmp);
}
for(int i = 1; i < ans.size(); i += 2){
reverse(ans[i].begin(), ans[i].end());
}
return ans;
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。