Re: [閒聊] 每日leetcode

作者: DJYOMIYAHINA (通通打死)   2024-08-26 08:38:43
剩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;
}
作者: Smallsh (Smallsh)   2024-08-26 08:40:00
大師
作者: JerryChungYC (JerryChung)   2024-08-26 09:14:00
剩我不會了

Links booklink

Contact Us: admin [ a t ] ucptt.com