1 思路 基础 不是搜索树,是普通树 公共祖先 和 相交的链表差异,指针没有next,只有root 找到bfs (queue)优化的痕迹 更新 不是 dfs,二十bfs,活用队列存树结构,用KV之map存关系; 1.1 实现错误思路 int lowestCommonAncestor(TreeNode* root, int o1, int o2) { // write code here vector<int> o1V; vector<int> o2V; queue<Tre...