Passion and Patience

Work Hard, Play Hard

导航

2024年3月20日 #

Leecode 二叉树的中序遍历

摘要: Day 6 第三题 这是一道让我崩溃的题,因为一个笔误root.right写成了root.left改了好久。 class Solution { public List<Integer> inorderTraversal(TreeNode root) { List<Integer> listRoot 阅读全文

posted @ 2024-03-20 15:16 安静的聆 阅读(2) 评论(0) 推荐(0) 编辑

Leecode 盛最多的水

摘要: Day 6 刷题 我的思路:利用两层循环,暴力搜索所有组合的面积,找出最大值。 import java.util.*; class Solution { public int maxArea(int[] height) { // 找height和间距 int maxArea = 0, iArea; 阅读全文

posted @ 2024-03-20 14:32 安静的聆 阅读(3) 评论(0) 推荐(0) 编辑

Leecode 移动零

摘要: Day 6 刷题 我的解题思路:利用双指针,一个指针不断向前移动,表征是否交换完成,另一个指针负责当次交换的位置。 class Solution { public void moveZeroes(int[] nums) { // 当指针p1指向的元素为0时,将其挪到后面 OUT: for(int p 阅读全文

posted @ 2024-03-20 11:10 安静的聆 阅读(3) 评论(0) 推荐(0) 编辑