leetcode894. 所有可能的滿二叉樹(雙重遞歸)

題目 struct TreeNode *newTreeNode(int val) { struct TreeNode *tmp = (struct TreeNode*)malloc(sizeof(struct TreeNode)); tmp->val = val; tmp->left = tmp->right = NULL; return tmp; } s
相關文章
相關標籤/搜索