LeetCode 894 All Possible Full Binary Trees

제목 주소:https://leetcode.com/problems/all-possible-full-binary-trees/description/
이 진 트 리 의 재 귀 구조.
홀수 에 대해 좌우 서브 트 리 점 의 개 수 를 매 거 하고 짝수 가 조건 에 부합 되 지 않 으 면 바로 되 돌려 줍 니 다.
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    vector allPossibleFBT(int N) {
        vector ans;
        if(N%2==0)
            return ans;
        if(N==1)
        {
            TreeNode *root=new TreeNode(0);
            ans.push_back(root);
            return ans;
        }
        for(int i=1;i left=allPossibleFBT(i);
            vector right=allPossibleFBT(N-i-1);
            for(int l=0;lleft=left[l];
                    root->right=right[r];
                    ans.push_back(root);
                }
            }
        }
        return ans;
    }
};

좋은 웹페이지 즐겨찾기