Leetcode 236. 二叉树的最近公共祖先
该题有两种解法,深搜和广搜,深搜整体更优广搜更加好想,保留每次循环队列最后一个节点值class Solution {private: vector<int> result; int max_index = -1; void dfs(TreeNode* root,int startIndex) { if (root == nullptr) return; if (startIndex > max_index)