随笔分类 -  Phtyon

摘要:需要注意图中存在环路。 JAVA: public final Node cloneGraph(Node node) { return deepCopy(node, new HashMap<Integer, Node>()); } private Node deepCopy(Node node, Ha 阅读全文
posted @ 2023-11-10 11:21 牛有肉 阅读(14) 评论(0) 推荐(0) 编辑
摘要:因为数组是有序的,可以递归的选取根节点构建子树。 JAVA: public final TreeNode sortedArrayToBST(int[] nums) { if (null == nums) return null; return this.build(nums, 0, nums.len 阅读全文
posted @ 2023-11-09 15:25 牛有肉 阅读(13) 评论(0) 推荐(0) 编辑