【LeetCode】589. N-ary Tree Preorder Traversal

這道題沒什麼特別之處 但是從題解中學到了,遍歷vector的新方法 /* // Definition for a Node. class Node { public: int val; vector<Node*> children; Node() {} Node(int _val, vector<Node*> _children) { val =
相關文章
相關標籤/搜索