摘要: 一般的二叉树: func lowestCommonAncestor(root, p, q *TreeNode) *TreeNode { if root==p||root==q||root==nil{ return root } left:=lowestCommonAncestor(root.Left 阅读全文
posted @ 2022-09-15 14:38 ☞@_@ 阅读(18) 评论(0) 推荐(0) 编辑