525. Contiguous Array 160. Intersection of Two Linked Lists

这篇博客探讨了两种算法问题:一是使用前缀和技巧解决数组中连续子数组的最大长度问题,二是通过迭代找到两个链表的交点。在前缀和问题中,通过维护一个哈希表存储前缀和及其对应的下标,从而找出最长连续1子数组的长度。在链表交点问题中,采用双指针同步前进,直到它们相遇于交点,返回该交点节点。
摘要由CSDN通过智能技术生成

前缀和
在这里插入图片描述

import java.util.HashMap;
import java.util.Map;
public class Test3 {
    public static void main(String[] args) {
        int[] nums={0,1,0};
        Test3 test3=new Test3();
        int maxLength = test3.findMaxLength(nums);
        System.out.println(maxLength);
    }
    public int findMaxLength(int[] nums) {
        int[] preSum=new int[nums.length+1];
        //第一个存前i个数和 第二个存下标
        //最大值为下标减去下标
        Map<Integer,Integer> map=new HashMap<>();
        map.put(0,0);
        //preSum[i]为nums 前i个和
        for (int i = 1; i <=nums.length; i++) {
            preSum[i]=preSum[i-1]+(nums[i-1]==1?1:-1);
        }
        int max=0;
        for (int i = 1; i <preSum.length ; i++) {
            int value=preSum[i];
            if (!map.containsKey(value)){
                map.put(value,i);
            }else {
                max=Math.max(max,i-map.get(value));
            }
        }
        return max;
    }
}

在这里插入图片描述

    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
          if (headA == null || headB == null) {
            return null;
        }
        ListNode pA = headA, pB = headB;
        while (pA != pB) {
            pA = pA == null ? headB : pA.next;
            pB = pB == null ? headA : pB.next;
        }
        return pA;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值