-
-
Save visiongeist/ba25c2414201a3c121f3229cc6b69ceb to your computer and use it in GitHub Desktop.
Topological sort in JavaScript
This file contains 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
Copyright 2012 Shin Suzuki<[email protected]> | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and | |
limitations under the License. |
This file contains 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
/** | |
* general topological sort | |
* @author SHIN Suzuki ([email protected]) | |
* @param Array<Array> edges : list of edges. each edge forms Array<ID,ID> e.g. [12 , 3] | |
* | |
* @returns Array : topological sorted list of IDs | |
**/ | |
function tsort(edges) { | |
var nodes = {}, // hash: stringified id of the node => { id: id, afters: lisf of ids } | |
sorted = [], // sorted list of IDs ( returned value ) | |
visited = {}; // hash: id of already visited node => true | |
var Node = function(id) { | |
this.id = id; | |
this.afters = []; | |
} | |
// 1. build data structures | |
edges.forEach(function(v) { | |
var from = v[0], to = v[1]; | |
if (!nodes[from]) nodes[from] = new Node(from); | |
if (!nodes[to]) nodes[to] = new Node(to); | |
nodes[from].afters.push(to); | |
}); | |
// 2. topological sort | |
Object.keys(nodes).forEach(function visit(idstr, ancestors) { | |
var node = nodes[idstr], | |
id = node.id; | |
// if already exists, do nothing | |
if (visited[idstr]) return; | |
if (!Array.isArray(ancestors)) ancestors = []; | |
ancestors.push(id); | |
visited[idstr] = true; | |
node.afters.forEach(function(afterID) { | |
if (ancestors.indexOf(afterID) >= 0) // if already in ancestors, a closed chain exists. | |
throw new Error('closed chain : ' + afterID + ' is in ' + id); | |
visit(afterID.toString(), ancestors.map(function(v) { return v })); // recursive call | |
}); | |
sorted.unshift(id); | |
}); | |
return sorted; | |
} | |
/** | |
* TEST | |
**/ | |
function tsortTest() { | |
// example 1: success | |
var edges = [ | |
[1, 2], | |
[1, 3], | |
[2, 4], | |
[3, 4] | |
]; | |
var sorted = tsort(edges); | |
console.log(sorted); | |
// example 2: failure ( A > B > C > A ) | |
edges = [ | |
['A', 'B'], | |
['B', 'C'], | |
['C', 'A'] | |
]; | |
try { | |
sorted = tsort(edges); | |
} | |
catch (e) { | |
console.log(e.message); | |
} | |
// example 3: generate random edges | |
var max = 100, iteration = 30; | |
function randomInt(max) { | |
return Math.floor(Math.random() * max) + 1; | |
} | |
edges = (function() { | |
var ret = [], i = 0; | |
while (i++ < iteration) ret.push( [randomInt(max), randomInt(max)] ); | |
return ret; | |
})(); | |
try { | |
sorted = tsort(edges); | |
console.log("succeeded", sorted); | |
} | |
catch (e) { | |
console.log("failed", e.message); | |
} | |
} | |
// for node.js | |
if (typeof exports == 'object' && exports === this) { | |
module.exports = tsort; | |
if (process.argv[1] === __filename) tsortTest(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment