LeetCode
-
LeetCode 1166. Design File System
原题链接在这里:https://leetcode.com/problems/design-file-system/ 题目: You are asked to design a fi…
-
LeetCode 169 Majority Element
Given an array nums of size n, return the majority element. The majority element is the el…
-
LeetCode 反转链表算法题解 All In One
LeetCode 反转链表算法题解 All In One js / ts 实现反转链表 反转链表原理 图解 双指针,swap 交换 // 反转 双指针 // swap: a = b…
-
LeetCode/最多能完成排序的块
1. 最多能完成排序的块I 给定一个长度为 n 的整数数组 arr ,它表示在 [0, n – 1] 范围内的整数的排列。我们将 arr 分割成若干 块 (即分区),并…
-
LeetCode 旋转字符串算法题解 All In One
LeetCode 旋转字符串算法题解 All In One js / ts 实现旋转字符串 旋转原理 图解 // 2 倍 s, 一定包含所有(字符移动)旋转操作之后的组合 ✅ //…
-
LeetCode Pow(x, n)算法题解 All In One
LeetCode Pow(x, n)算法题解 All In One js / ts 实现 Pow(x, n) 50. Pow(x, n) https://leetcode.cn/p…
-
LeetCode 旋转数组算法题解 All In One
LeetCode 旋转数组算法题解 All In One 189. Rotate Array /** Do not return anything, modify nums in-…
-
leetcode 螺旋矩阵算法题 All In One
leetcode 螺旋矩阵算法题解 All In One js / ts 实现螺旋矩阵 LeetCode 54. Spiral Matrix “use strict”; /** *…
-
leetcode-贪心-134
/** * <p>在一条环路上有 <code>n</code> 个加油站,其中第 <code>i</code…
-
LeetCode刷题19-执行时长
1 package exam; 2 3 import java.util.Scanner; 4 5 /** 6 * 功能描述 7 * 8 * @author ASUS 9 …