C++/代码:

把二叉树打印成多行

http://www.nowcoder.com/questionTerminal/445c44d982d04483b04a54f298796288

C++/代码:

class Solution {
public:
        vector<vector<int>> Print(TreeNode* pRoot) {
            vector<vector<int>> res; //定义二维输出数组
            if (!pRoot) return res;
            queue<TreeNode*> q;
            q.push(pRoot);
            q.push(NULL); //插入结束标识符
            vector<int> level;
            while (q.size()) {
                auto t = q.front();
                q.pop();
                if (!t) {
                    if (level.empty()) break;
                    res.push_back(level);
                    level.clear();
                    q.push(NULL); //插入结束标识符
                    continue;
                }
                level.push_back(t->val);
                if (t->left) q.push(t->left);
                if (t->right) q.push(t->right);
            }
            return res;
        }
};
全部评论

相关推荐

数学转码崽:一直给我推,投了又不理,理了又秒挂
点赞 评论 收藏
分享
03-15 12:48
门头沟学院 Java
牛牛要早起:这个一般就跟你说有高薪,然后叫你买车,之后血亏
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务