Leetcode#617. 合併二叉樹,C++實現

目錄 1. 題目 2. 方法一 2.1. 代碼 2.2. 結果 1. 題目 2. 方法一 2.1. 代碼 class Solution { public: TreeNode* mergeTrees(TreeNode* t1, TreeNode* t2) { if(t1==NULL) return t2; if(t2==NULL) return t1;
相關文章
相關標籤/搜索