977.有序数组的平方
给你一个按 非递减顺序 排序的整数数组 nums,返回 每个数字的平方 组成的新数组,要求也按 非递减顺序 排序。
示例 1:
输入:nums = [-4,-1,0,3,10]
输出:[0,1,9,16,100]
解释:平方后,数组变为[16,1,0,9,100] 排序后,数组变为 [0,1,9,16,100]
示例 2:
输入:nums = [-7,-3,2,3,11]
输出:[4,9,9,49,121]
public class Leetcode977 {
public static void main(String[] args) {
int[] nums = {-4, -1, 0, 3, 10};
int[] ints = sortedSquares(nums);
Arrays.stream(ints).forEach(System.out::println);
}
public static int[] sortedSquares(int[] nums) {
// 数组长度
int n = nums.length - 1;
// 左指针
int left = 0;
// 右指针
int right = n;
// 新数组长度
int p = n;
int[] arr = new int[p + 1];
// [] 左右相等才能 确定唯一数据
while (left <= right) {
// 比较 左右两边数据大小
if (abs(nums[left]) > abs(nums[right])) {
// 插入最大值
arr[p] = square(nums[left]);
// 左边大 左指针右移
left++;
} else {
arr[p] = square(nums[right]);
right--;
}
// 指针左移
p--;
}
return arr;
}
public static int square(int num) {
return num * num;
}
public static int abs(int num) {
return num < 0 ? -num : num;
}
}
209.长度最小的子数组
给定一个含有 n 个正整数的数组和一个正整数 target 。
找出该数组中满足其和 ≥ target 的长度最小的 连续子数组 [numsl, numsl+1, …, numsr-1, numsr] ,并返回其长度。如果不存在符合条件的子数组,返回 0 。
示例 1:
输入:target = 7, nums = [2,3,1,2,4,3]
输出:2
解释:子数组 [4,3] 是该条件下的长度最小的子数组。
示例 2:输入:target = 4, nums = [1,4,4]
输出:1
示例 3:输入:target = 11, nums = [1,1,1,1,1,1,1,1]
输出:0
public class Leetcode209 {
public static void main(String[] args) {
int[] nums = {2, 3, 1, 2, 4, 3};
System.out.println("minSubArrayLen(7,nums) = " + minSubArrayLen(7, nums));
}
/**
* 每个元素 只进窗口一次 出窗口一次
*
* @param target target
* @param nums nums
* @return int
*/
public static int minSubArrayLen(int target, int[] nums) {
int windowStart = 0;
int windowSize = Integer.MAX_VALUE;
int sum = 0;
for (int windowEnd = 0; windowEnd < nums.length; windowEnd++) {
sum += nums[windowEnd];
// [1,1,1,1,100] target为 100
// 起始位置需要一直右移
while (sum >= target) {
windowSize = Math.min(windowSize, (windowEnd - windowStart + 1));
// 窗口变小
sum -= nums[windowStart];
// 右移
windowStart++;
}
}
return windowSize == Integer.MAX_VALUE ? 0 : windowSize;
}
}
59.螺旋矩阵II
给你一个正整数 n ,生成一个包含 1 到 n2 所有元素,且元素按顺时针顺序螺旋排列的 n x n 正方形矩阵 matrix 。
示例 1:
输入:n = 3
输出:
[[1,2,3],
[8,9,4],
[7,6,5]]
示例 2:
输入:n = 1
输出:[[1]]
public class Leetcode59 {
public static void main(String[] args) {
int[][] ints = generateMatrix(5);
Arrays.stream(ints).forEach(ints1 -> {
Arrays.stream(ints1).forEach(i -> System.out.print(i + " "));
System.out.println();
});
}
public static int[][] generateMatrix(int n) {
int[][] res = new int[n][n];
// 定义每循环一个圈的起始位置
int startx = 0, starty = 0;
// 每个圈循环几次,例如n为奇数3,那么loop = 1 只是循环一圈,矩阵中间的值需要单独处理
int loop = n / 2;
// 矩阵中间的位置,例如:n为3, 中间的位置就是(1,1),n为5,中间位置为(2, 2)
int mid = n / 2;
// 用来给矩阵中每一个空格赋值
int count = 1;
// 需要控制每一条边遍历的长度,每次循环右边界收缩一位
int offset = 1;
int i, j;
while (loop > 0) {
// 下面开始的四个for就是模拟转了一圈
// 模拟填充上行从左到右(左闭右开)
for (j = starty; j < n - offset; j++) {
res[startx][j] = count++;
}
// 模拟填充右列从上到下(左闭右开)
for (i = startx; i < n - offset; i++) {
res[i][j] = count++;
}
// 模拟填充下行从右到左(左闭右开)
for (; j > starty; j--) {
res[i][j] = count++;
}
// 模拟填充左列从下到上(左闭右开)
for (; i > startx; i--) {
res[i][j] = count++;
}
// 第二圈开始的时候,起始位置要各自加1, 例如:第一圈起始位置是(0, 0),第二圈起始位置是(1, 1)
startx++;
starty++;
// offset 控制每一圈里每一条边遍历的长度
offset ++;
loop--;
}
// 如果n为奇数的话,需要单独给矩阵最中间的位置赋值
if (n % 2 == 1) {
res[mid][mid] = count;
}
return res;
}
}