C++實現二叉樹的序列打印(先序中序後序)

class TreetoSequence{ public: vector<vector<int>> convert(TreeNode* root){ vector<vector<int>> res; vector<int> temp; first(root,temp); res.push_back(temp);
相關文章
相關標籤/搜索