Compute social distance between two users

前端 未结 3 484
逝去的感伤
逝去的感伤 2020-11-27 17:24

How you would code an efficient algorithm which can return a social \'distance\' between two users.

For example, when you visit a profile on LinkedIn you can see wha

相关标签:
3条回答
  • 2020-11-27 17:43

    assuming you don't have any heuristic function about the distance to the target, the best solution that is valid is bi-directional BFS:
    Algorithm idea: do a BFS search simultaneously from the source and the target: [BFS until depth 1 in both, until depth 2 in both, ....].
    The algorithm will end when you find a vertex v, which is in both BFS's front.

    Algorithm behavior: The vertex v that terminates the algorithm's run will be exactly in the middle between the source and the target.
    This algorithm will yield much better result in most cases then BFS from the source [explanation why it is better then BFS follows], and will surely provide an answer, if one exist.

    why is it better then BFS from the source?
    assume the distance between source to target is k, and the branch factor is B [every vertex has B edges].
    BFS will open: 1 + B + B^2 + ... + B^k vertices.
    bi-directional BFS will open: 2 + 2B + 2B^2 + 2B^3 + .. + 2B^(k/2) vertices.

    for large B and k, the second is obviously much better than the first.

    EDIT:
    NOTE, that this solution does NOT require storing the whole graph in memory, it only requires implementing a function: successor(v) which returns all the successors of a vertex [all vertices you can get to, within 1 step from v]. With this, only the nodes you open [2 + 2B + ... + 2B^(k/2) as explained above] should be stored. To further save memory, you can use Iterative Deepening DFS from one direction, instead of BFS, but it will consume more time.

    0 讨论(0)
  • 2020-11-27 17:44

    I would have assumed that this would be done by applying a shortest path algorithm, such as breadth first search to a graph database. But they appear to store their entire graph in memory, at least according to this.

    I'm sure that the algorithm ultimately boils down to some form of shortest path one over a graph structure (nodes and edges).

    Edit: Changed the algorithm as per comments.

    0 讨论(0)
  • 2020-11-27 17:47

    First the graph needs to be populated. I cannot say about how you get the graph from linked in, probably making a BFS or DFS of the nodes, discover the graphs, and establish links. To find the distance between any two best is to make a BFS from the source node and stop when the destination is found. The links does not have weights, i think, if you do not imply something other.

    In this case you need to apply a BFS each for finding distance between each pair, when the source node is different. Else, you can implement the Floyd Warshall algorithm to get all source all destination shortest paths, and because each link has same weight it will get what you want. In this case once structure is made, for any source and destination the shortest distance can be found. One problem is that the network is always changing therefore re-processing is needed. Therefore BFS i think will be good.

    To make processing faster you can implement BFS to run in parallel. Have a look at Design and analysis of a nondeterministic parallel breadth-first search algorithm

    0 讨论(0)
提交回复
热议问题