请实现一个函数按照之字形打印二叉树,即第一行按照从左到右的顺序打印,第二层按照从右至左的顺序打印,第三行按照从左到右的顺序打印,其他行以此类推。
右进左出即反向,两端进出即双向链表
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
class Solution { public: vector<vector<int> > Print(TreeNode* pRoot) { if (pRoot == nullptr) { return {}; } else { vector<vector<int>> result; bool isLeftFirst = true; list<TreeNode*> l{pRoot}; int line_width; while (line_width = l.size()) { vector<int> row; row.reserve(line_width); if (isLeftFirst) { for (; line_width > 0; line_width--) { TreeNode *n = l.front(); l.pop_front(); row.push_back(n->val); if (n->left != nullptr) { l.push_back(n->left); } if (n->right != nullptr) { l.push_back(n->right); } } isLeftFirst = false; } else { for (; line_width > 0; line_width--) { TreeNode *n = l.back(); l.pop_back(); row.push_back(n->val); if (n->right != nullptr) { l.push_front(n->right); } if (n->left != nullptr) { l.push_front(n->left); } } isLeftFirst = true; } result.push_back(row); } return result; } } };
|