摘要: 二叉树遍历 先序 递归 int *res; void preorder(struct TreeNode *root, int *returnSize) { if (root == NULL) return; // 根左右 res[(*returnSize)++] = root->val; preor 阅读全文
posted @ 2023-12-31 19:28 n1ce2cv 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 二叉树简单题 2331. 计算布尔二叉树的值 bool evaluateTree(struct TreeNode *root) { // 递归出口 if (root == NULL) return root; if (root->left == NULL && root->right == NULL 阅读全文
posted @ 2023-12-31 02:13 n1ce2cv 阅读(13) 评论(0) 推荐(0) 编辑