剩easy能給我一點信心了
今天想這題花了38分鐘
void helper(Node* root, vector<int>& ans) {
if(!root) {
return;
}
for(auto n : root->children) {
helper(n, ans);
}
ans.push_back(root->val);
}
vector<int> postorder(Node* root) {
vector<int> ans;
helper(root, ans);
return ans;
}