码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 817. Linked List Components (链表组件)

时间:2019-07-15 09:19:54      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:bsp   contains   temp   imm   ash   nbsp   java   page   hashset   

题目标签:Linked List

  题目给了我们一组 linked list, 和一组 G, 让我们找到 G 在 linked list 里有多少组相连的部分。

  把G 存入 hashset,遍历 linked list, 利用 hashset 来检查目前的点 和 下一个点 是否在G 里面。

  如果目前的点在G里面,下一个点不在,说明这里断开了。具体看code。

 

Java Solution:

Runtime:  7 ms, faster than 81 % 

Memory Usage: 40 MB, less than 93 %

完成日期:05/14/2019

关键点:HashSet

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public int numComponents(ListNode head, int[] G) {
        Set<Integer> set = new HashSet<>();
        int result = 0;
        
        for(int num : G) 
        {
            set.add(num);
        }
        
        for(ListNode node = head; node != null; node = node.next) 
        {
            if(set.contains(node.val) 
               && (node.next == null || !set.contains(node.next.val)))
                result++;
        }
     
        return result;
    }
}

参考资料:Le‘e‘tCode Discuss

LeetCode 题目列表 - LeetCode Questions List

题目来源:https://leetcode.com/

LeetCode 817. Linked List Components (链表组件)

标签:bsp   contains   temp   imm   ash   nbsp   java   page   hashset   

原文地址:https://www.cnblogs.com/jimmycheng/p/11186769.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!