zoukankan      html  css  js  c++  java
  • Coursera-Algotithms学习

    Week1 Job Interview Question

    Social network connectivity. Given a social network containing N members and a log file containing M timestamps at which times pairs of members formed friendships, design an algorithm to determine the earliest time at which all members are connected (i.e., every member is a friend of a friend of a friend ... of a friend). Assume that the log file is sorted by timestamp and that friendship is an equivalence relation. The running time of your algorithm should be MlogN or better and use extra space proportional to N.

     1 public class SocialNet {
     2     private int N;
     3     private String InputFileName;
     4     public SocialNet(int N,String InputFileName){
     5         this.N = N;
     6         this.InputFileName = InputFileName;
     7     }
     8     public String getTimeString(){
     9         WeightedQuickUnionUF wQUF = new WeightedQuickUnionUF(N);
    10         In fin = new In(InputFileName);
    11         while(fin.hasNextLine()){
    12             String[] lineSplit = fin.readLine().split(" ");
    13             wQUF.union(Integer.parseInt(lineSplit[1]), Integer.parseInt(lineSplit[2]));
    14             if(wQUF.count() == 1){
    15                 return lineSplit[0];
    16             }
    17         }
    18         return "Never";
    19     }
    20     public static void main(String[] args) {
    21         // TODO Auto-generated method stub
    22         SocialNet sn = new SocialNet(10,"SocialNetInput.txt");
    23         System.out.println(sn.getTimeString());
    24     }
    25 }

     input File:

    20130101 0 2
    20130201 0 4
    20130301 2 3
    20130401 3 4
    20130501 4 5
    20130601 3 6
    20130701 5 6
    20130801 2 6
    20130901 1 2
    20131001 7 3
    20131101 0 9
    20131201 4 8
    20131202 4 3
  • 相关阅读:
    Spark Interaction(特征交互-笛卡尔转换)
    Spark DCT 离散余弦变换
    Spark polynomialExpansion 多项式扩展
    Spark PCA
    Spark n-gram模型
    Spark OneHotEncoder
    Spark 逻辑回归LogisticRegression
    查看macOS下正在使用的zsh
    Neovim中NERDTree等多处cursorline不高亮
    让pip使用python3而不是python2
  • 原文地址:https://www.cnblogs.com/jianboqi/p/3555037.html
Copyright © 2011-2022 走看看