Leetcode每日随机2021/4/22

本文介绍了两道LeetCode题目,一道是寻找两个链表的交点,另一道是计算唯一电子邮件地址的数量。在解决链表问题时,虽然使用了HashSet实现,但注意到了可以优化到O(1)空间复杂度的方法。对于邮件去重,通过解析并处理电子邮件地址,利用HashSet快速去重,得出唯一邮件数量。
摘要由CSDN通过智能技术生成

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

今天碰到两道简单啊
leetcode160
我并没有完全按照要求做,还是开了set。
如果空间复杂度O(1)的话这题可真不是简单题。
题解中O(1)的做法确实很秀。
leetcode929
傻逼题

代码

leetcode160

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
		Set<ListNode> listA = new HashSet<ListNode>();
		Set<ListNode> listB = new HashSet<ListNode>();
		while (headA != null || headB != null) {
			if (headA != null) {
				if (!listB.contains(headA)) {
					listA.add(headA);
					headA = headA.next;
				} else {
					return headA;
				}
			}
			if (headB != null) {
				if (!listA.contains(headB)) {
					listB.add(headB);
					headB = headB.next;
				} else {
					return headB;
				}
			}
		}
		return null;
	}
}

leetcode929

class Solution {
    public int numUniqueEmails(String[] emails) {
		Set<String> set = new HashSet<String>();
		for (String email : emails) {
			String[] arr = email.split("@");
			int idx = arr[0].indexOf('+');
			if (idx >= 0) {
				set.add(arr[0].substring(0, idx).replaceAll("\\.", "") + "@" + arr[1]);
			} else {
				set.add(arr[0].replaceAll("\\.", "") + "@" + arr[1]);
			}
		}
		return set.size();
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值