《中英双解》leetCode Find Center of start Graph(找到星型图的中心节点)

There is an undirected star graph consisting of n nodes labeled from 1 to n. A star graph is a graph where there is one center node and exactly n - 1 edges that connect the center node with every other node.

You are given a 2D integer array edges where each edges[i] = [ui, vi] indicates that there is an edge between the nodes ui and vi. Return the center of the given star graph.

Example 1:


Input: edges = [[1,2],[2,3],[4,2]]
Output: 2
Explanation: As shown in the figure above, node 2 is connected to every other node, so 2 is the center.
Example 2:

 

Input: edges = [[1,2],[5,1],[1,3],[1,4]]
Output: 1
 

Constraints:

3 <= n <= 105
edges.length == n - 1
edges[i].length == 2
1 <= ui, vi <= n
ui != vi
The given edges represent a valid star graph.

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-center-of-star-graph
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 

提供两种方法 

class Solution {
    public int findCenter(int[][] edges) {

        // 要么首条 edge 第一个节点(edges[0][0])是交点,
        // 要么首边 edge 第二个节点(edge[0][1])是交点
        return (edges[0][0]==edges[1][0] || edges[0][0]==edges[1][1])?edges[0][0] : edges[0][1];
    }
}
class Solution {
    public int findCenter(int[][] edges) {
    //    int n = edges.length;
    //    int[] list = new int[10];
    //    for(int[] i : edges){
    //        list[i[0]]++;
    //        list[i[1]]++;
    //    }

    //    for(int i = 0;i < list.length;i++){
    //        if(list[i] == list.length - 1){
    //            return list[i];
    //        }
    //    }
    //    return -1;
       Map<Integer,Integer> map = new HashMap<>();
       int n = edges.length;
       for(int i = 0;i < n;i++){
           for(int j = 0;j < edges[i].length;j++){
               if(!map.containsKey(edges[i][j])){
                   map.put(edges[i][j],1);
               } else {
                   return edges[i][j];
               }
           }
       }
       return 0;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值