This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var MAX_DEPTH = 3; | |
var findPath = function (source, target, u2f, visitor) { // u2f = user to friend | |
source = Graph.userToIndex(source); | |
target = Graph.userToIndex(target); | |
var dist = [] | |
var prev = [] | |
var queue = [] | |
var seen = [] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var MAX_DEPTH = 3; | |
var findPath = function (source, target, u2f, visitor) { // u2f = user to friend | |
var dist = {} | |
var prev = {} | |
var queue = [] | |
dist[source] = 0 | |
prev[source] = source |