mybloger

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2025年6月30日

摘要: best erp available in the market what is the full form of the sap what are the features of sap it is an integration of all functions into common softw 阅读全文
posted @ 2025-06-30 21:09 万能包哥 阅读(0) 评论(0) 推荐(0)

摘要: 47、路径总和 给定一个二叉树的根节点 root ,和一个整数 targetSum ,求该二叉树里节点值之和等于 targetSum 的 路径 的数目。 路径 不需要从根节点开始,也不需要在叶子节点结束,但是路径方向必须是向下的(只能从父节点到子节点)。 /** * Definition for a 阅读全文
posted @ 2025-06-30 20:15 万能包哥 阅读(0) 评论(0) 推荐(0)

2025年6月23日

摘要: How expensive is it to... fly to Europe from here live in Dubai buy a yacht build a mension rent a apartment in Monaco have a suit custom-made eat at 阅读全文
posted @ 2025-06-23 21:58 万能包哥 阅读(2) 评论(0) 推荐(0)

摘要: 45、二叉树转成单链表 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode() {} * TreeNod 阅读全文
posted @ 2025-06-23 21:20 万能包哥 阅读(2) 评论(0) 推荐(0)

2025年6月22日

摘要: 10个常见口语表达句型 I know what it's like to... be poor to be heartbroken to be the new guy feel helpless struggle to feed kids lose someone you love feel lik 阅读全文
posted @ 2025-06-22 21:44 万能包哥 阅读(1) 评论(0) 推荐(0)

摘要: 43、二叉树第K小的元素 给定一个二叉搜索树的根节点 root ,和一个整数 k ,请你设计一个算法查找其中第 k 小的元素(从 1 开始计数)。 /** * Definition for a binary tree node. * public class TreeNode { * int val 阅读全文
posted @ 2025-06-22 20:41 万能包哥 阅读(3) 评论(0) 推荐(0)

2025年6月21日

摘要: 母语者使用的十个句型 I almost forgot... to pay the rent to lock the door to bring my lunch what Tom was like to turn off the stove. to tell you the big news. to 阅读全文
posted @ 2025-06-21 22:03 万能包哥 阅读(0) 评论(0) 推荐(0)

摘要: 41、有序数组转为二叉搜索树 给你一个整数数组 nums ,其中元素已经按 升序 排列,请你将其转换为一棵 平衡 二叉搜索树。 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNo 阅读全文
posted @ 2025-06-21 20:28 万能包哥 阅读(2) 评论(0) 推荐(0)

2025年6月20日

摘要: I like your... car hat voice guitar haircut personality sense of humor Let me tell you.... a joke my plans a secret the facts what I see how I feel ev 阅读全文
posted @ 2025-06-20 21:24 万能包哥 阅读(1) 评论(0) 推荐(0)

摘要: 39、二叉树的直径 给你一棵二叉树的根节点,返回该树的 直径 。 二叉树的 直径 是指树中任意两个节点之间最长路径的 长度 。这条路径可能经过也可能不经过根节点 root 。 两节点之间路径的 长度 由它们之间边数表示。 /** * Definition for a binary tree node 阅读全文
posted @ 2025-06-20 21:00 万能包哥 阅读(1) 评论(0) 推荐(0)