每天至少刷一道题
一周至少五篇算法笔记
题目:
给你一个数组 nums 和一个值 val,你需要 原地 移除所有数值等于 val 的元素,并返回移除后数组的新长度。
不要使用额外的数组空间,你必须仅使用 O(1) 额外空间并 原地 修改输入数组。
元素的顺序可以改变。你不需要考虑数组中超出新长度后面的元素。
题目分析:
这是一个时间复杂度为O(n)的双指针算法
定义了两个指针:
1.快指针:用于扫描初始数组元素
2.慢指针:为了更新数组(也可以称为新数组赋值)
首先用快指针遍历数组,当fast指针指向的数组元素不是目标元素时,就让low指针为新数组赋值为fast指针指向的元素 。
public int removeElement(int[] nums, int val) {
int slow=0;
for(int fast=0;fast<nums.length;fast++){
if(nums[fast]!=val){
nums[slow]=nums[fast];
slow++;
}
}
return slow;
}
题目:
给你一个按 非递减顺序 排序的整数数组 nums,返回 每个数字的平方 组成的新数组,要求也按 非递减顺序 排序。
示例 1:
输入:nums = [-4,-1,0,3,10]
输出:[0,1,9,16,100]
解释:平方后,数组变为 [16,1,0,9,100]
排序后,数组变为 [0,1,9,16,100]
题目分析:
class Solution {
public int[] sortedSquares(int[] nums) {
int [] result=new int [nums.length];
//指向新数组的最后一个元素
int k=nums.length-1;
for(int i=0,j=nums.length-1;i<=j;){
if(nums[i]*nums[i]>nums[j]*nums[j]){
result[k--]=nums[i]*nums[i];
i++;
}else{
result[k--]=nums[j]*nums[j];
j--;
}
}
return result;
}
}
题目:
给定一个含有 n 个正整数的数组和一个正整数 target 。
找出该数组中满足其和 ≥ target 的长度最小的 连续子数组 [numsl, numsl+1, …, numsr-1, numsr] ,并返回其长度。如果不存在符合条件的子数组,返回 0 。
示例 1:
输入:target = 7, nums = [2,3,1,2,4,3]
输出:2
解释:子数组 [4,3] 是该条件下的长度最小的子数组。
题目分析:
Reading problem :给定一个数组和整数,要求在数组中找到连续的元素和大于等于这个给定的整数,符合条件则返回最短长度,不符合条件则返回0
首先想到的思路就是双层for循环,接着找两个存储元素个数的变量,里层for循环获取元素和,外层for循环控制每层for循环的元素减少。不过要及时控制里层for循环的结束。
这里我们用到的是双指针法-滑动窗口。
要明白i 和 j 的两个变量的含义 ;j具体代表的是初始位置呢还是结束位置呢?
1.假设j代表的是初始位置那么和暴力解法有啥区别呢?
因此i代表滑动起始位置,j代表结束位置:
首先遍历元素,并求和,当sum>=给定的整数时进行滑动窗口或者说剪枝,从头部开始滑动,(可能有人问为什么不从尾部滑动,因为尾部是我们刚好满足sum>=target的条件,滑动尾部不就马上不满足条件了)
滑动的思路大概就是:先获取你目前窗口的长度,并且与你之前的窗口做比较,紧接着就是滑动:sum-窗口第一个元素,窗口索引++
我们需要考虑滑动窗口的执行是if 还是 while 呢?
想当然那就是while,因为你不确定你执行一次剪枝后是否为最短长度,只有执行到不满足条件结束才能确保不满足条件的前一次是最短的。
有些人看到代码还是有些不明白 。可能会考虑到这个j不是从0遍历到数组最后一个元素吗?那为什么会有j会有固定结束位置呢?其实固定结束位置(窗口最短长度)是我们用变量保存起来的,当你在前面数组元素中遍历到最短窗口但是你不清楚后门数组是否有更短的窗口,所以我们提前将我们目前已知最短长度保存起来了,到后面我们获取到后半部分数组中最短窗口长度后进行一个比较。因此这个j的位置是与你所参考的位置不同导致j的含义不同的。
class Solution {
public int minSubArrayLen(int target, int[] nums) {
//i是滑动窗口的起始位置
int i=0;
//result初始化值为自定义的最大值
int result=Integer.MAX_VALUE;
int sum=0;
int sub=0;
for(int j=0;j<nums.length;j++){
sum+=nums[j];
while(sum>=target){
sub=j-i+1;
//与之前的最短窗口进行比较
result=Math.min(result,sub);
//剪枝或者滑动
sum=sum-nums[i];
//滑动
i++;
}
}
return result==Integer.MAX_VALUE ? 0:result;
}
}
**题目:
**给你一个链表的头节点 head 和一个整数 val ,请你删除链表中所有满足 Node.val == val 的节点,并返回 新的头节点 。
示例 1:
输入:head = [1,2,6,3,4,5,6], val = 6
输出:[1,2,3,4,5]
示例 2:
输入:head = [], val = 1
输出:[]
示例 3:
输入:head = [7,7,7,7], val = 7
输出:[]
题目分析:
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode removeElements(ListNode head, int val) {
while(head!=null&&head.val==val){
head=head.next;
}
if(head==null){
return head;
}
ListNode cur=head;
//利用临时结点删除,因为是单链表
while(cur.next != null){
if(cur.next.val==val){
cur.next=cur.next.next;
}else{
cur=cur.next;
}
}
return head;
}
}
题目:
给定一个已排序的链表的头 head , 删除原始链表中所有重复数字的节点,只留下不同的数字 。返回 已排序的链表 。
示例 1:
输入:head = [1,2,3,3,4,4,5]
输出:[1,2,5]
示例 2:
输入:head = [1,1,1,2,3]
输出:[2,3]
初做反思:
题目分析:
时间复杂度为O(n),空间复杂度为O(1)。即使两个嵌套while但是每次循环要么删除一个节点,要么向右移动,所以循环次数为O(n)
class Solution {
public ListNode deleteDuplicates(ListNode head) {
if(head==null){
return head;
}
ListNode dunny=new ListNode(0,head);
ListNode cur=dunny;
//第一个结点和下一个结点
while(cur.next!=null&&cur.next.next!=null){
if(cur.next.val==cur.next.next.val){
int x=cur.next.val;
while(cur.next!=null && cur.next.val==x){
cur.next=cur.next.next;
}
}else{
cur=cur.next;
}
}
return dunny.next;
}
}
**题目:**你可以选择使用单链表或者双链表,设计并实现自己的链表。
单链表中的节点应该具备两个属性:val 和 next 。val 是当前节点的值,next 是指向下一个节点的指针/引用。
如果是双向链表,则还需要属性 prev 以指示链表中的上一个节点。假设链表中的所有节点下标从 0 开始。
实现 MyLinkedList 类:
MyLinkedList() 初始化 MyLinkedList 对象。
int get(int index) 获取链表中下标为 index 的节点的值。如果下标无效,则返回 -1 。
void addAtHead(int val) 将一个值为 val 的节点插入到链表中第一个元素之前。在插入完成后,新节点会成为链表的第一个节点。
void addAtTail(int val) 将一个值为 val 的节点追加到链表中作为链表的最后一个元素。
void addAtIndex(int index, int val) 将一个值为 val 的节点插入到链表中下标为 index 的节点之前。如果 index 等于链表的长度,那么该节点会被追加到链表的末尾。如果 index 比长度更大,该节点将 不会插入 到链表中。
void deleteAtIndex(int index) 如果下标有效,则删除链表中下标为 index 的节点。
思路:
class ListNode{
int val;
ListNode next;
ListNode(){}
ListNode(int val){
this.val=val;
}
}
class MyLinkedList {
int size;
ListNode head;
public MyLinkedList() {
size=0;
head=new ListNode(0);
}
public int get(int index) {
//索引下标非法 返回-1;
if(index < 0 || index >=size){
return -1;
}
//
ListNode pred=head;
for(int i=0;i<=index;i++){
pred=pred.next;
}
return pred.val;
}
public void addAtHead(int val) {
addAtIndex(0, val);
}
public void addAtTail(int val) {
addAtIndex(size, val);
}
public void addAtIndex(int index, int val) {
if (index > size) {
return;
}
if (index < 0) {
index = 0;
}
size++;
//找到要插入节点的前驱
ListNode pred = head;
for (int i = 0; i < index; i++) {
pred = pred.next;
}
ListNode toAdd = new ListNode(val);
toAdd.next = pred.next;
pred.next = toAdd;
}
public void deleteAtIndex(int index) {
if (index < 0 || index >= size) {
return;
}
size--;
if (index == 0) {
head = head.next;
return;
}
ListNode pred=head;
for(int i=0;i<index;i++){
pred=pred.next;
}
pred.next=pred.next.next;
}
}
/**
* Your MyLinkedList object will be instantiated and called as such:
* MyLinkedList obj = new MyLinkedList();
* int param_1 = obj.get(index);
* obj.addAtHead(val);
* obj.addAtTail(val);
* obj.addAtIndex(index,val);
* obj.deleteAtIndex(index);
*/
题目:
给定单链表的头节点 head ,请反转链表,并返回反转后的链表的头节点。
示例 1:
输入:head = [1,2,3,4,5]
输出:[5,4,3,2,1]
示例2:
输入:head = []
输出:[]
思路:
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
//双指针
class Solution {
public ListNode reverseList(ListNode head) {
ListNode cur=head;
ListNode pre=null;
ListNode temp=null;
while(cur!=null){
temp=cur.next;
cur.next=pre;
pre=cur;
cur=temp;
}
return pre;
}
//递归写法
public static ListNode recursion(ListNode cur,ListNode pre ,ListNode temp){
if(cur==null){
return pre;
}
temp=cur.next;
cur.next=pre;
pre=cur;
cur=temp;
return recursion(cur,pre,temp);
}
}
题目:
给你一个链表,两两交换其中相邻的节点,并返回交换后链表的头节点。你必须在不修改节点内部的值的情况下完成本题(即,只能进行节点交换)。
示例 1:
输入:head = [1,2,3,4]
输出:[2,1,4,3]
示例 2:
输入:head = []
输出:[]
示例 3:
输入:head = [1]
输出:[1]
题目分析:
这里我们用到了虚拟头节点的方法:
class Solution {
public ListNode swapPairs(ListNode head) {
ListNode dummy= new ListNode(-1);
dummy.next=head;
ListNode cur=dummy;
ListNode temp1=null;
ListNode temp2=null;
while(cur.next!=null&&cur.next.next!=null){
temp1=cur.next;
temp2=cur.next.next.next;
cur.next=cur.next.next;
cur.next.next=temp1;
temp1.next=temp2;
cur=temp1;
}
return dummy.next;
}
}
题目:
给你一个链表,删除链表的倒数第 n 个结点,并且返回链表的头结点。
示例 1:
输入:head = [1,2,3,4,5], n = 2
输出:[1,2,3,5]
示例 2:
输入:head = [1], n = 1
输出:[]
题目分析:
class Solution {
public ListNode removeNthFromEnd(ListNode head, int n) {
ListNode dummy=new ListNode(0);
dummy.next=head;
ListNode fast=dummy;
ListNode low=dummy;
n++;//让fast指针多走一步,提前进入空节点(即末尾的后面的空节点
while(n-->0&&fast!=null){
fast=fast.next;
}
while(fast!=null){
fast=fast.next;
low=low.next;
}
low.next=low.next.next;
return dummy.next;
}
}
题目:
给定一个链表,返回链表开始入环的第一个节点。 从链表的头节点开始沿着 next 指针进入环的第一个节点为环的入口节点。如果链表无环,则返回 null。
为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。注意,pos 仅仅是用于标识环的情况,并不会作为参数传递到函数中。
说明:不允许修改给定的链表。
示例 1:
输入:head = [3,2,0,-4], pos = 1
输出:返回索引为 1 的链表节点
解释:链表中有一个环,其尾部连接到第二个节点。
题目分析:
public class Solution {
public ListNode detectCycle(ListNode head) {
ListNode fast=head;
ListNode low=head;
while(fast!=null&&fast.next!=null){//因为fast指针在low指针的前面仅需这个条件即可
fast=fast.next.next;
low=low.next;
if(fast==low){
ListNode index1=fast;
ListNode index2=head;
while(index1!=index2){//这个条件判定是否到达入口
index1=index1.next;
index2=index2.next;
}
return index1;
}
}
return null;
}
}