Created
June 13, 2020 10:30
-
-
Save HKhademian/39ab5130abb699bd210847546f3239ca to your computer and use it in GitHub Desktop.
Tri Data Struct 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
// to run this code : | |
// node ./LCP.js | |
const Tri = require("./Tri.js"); | |
Tri.prototype.LCP = function() { | |
var node = this.root, keys = undefined; | |
while((keys=Object.keys(node.children)).length == 1) { | |
node = node.children[keys[0]]; | |
} | |
return node; // this is deepest common node | |
}; | |
(function test1() { | |
const lcp = dict.LCP(); | |
const res = lcp.toString(); | |
console.log("LCP:", res); | |
})/*()*/; | |
(function main() { | |
// const dict = new Tri(["Hossain", "Hassan"], "Hamid"); | |
// const dict = new Tri(["Book", "Booklet", "Boom", "Bombs"]); | |
// const dict = new Tri("Admiral", "Book", "Booklet", "Boom","Bombs"); | |
const dict = new Tri("Compact", "Companionate", "Complex", "Compare", "Compass"); | |
const lcp = dict.LCP(); | |
const res = lcp.toString(); | |
console.log("LCP:", res); | |
})(); |
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
module.exports = function Tri() { | |
function Node( | |
parent = undefined, // no parent | |
key = undefined, // no character | |
exists = false, // no word till this node | |
) { | |
this.parent = parent; | |
this.key = key; | |
this.exists = exists; | |
this.children = {}; // key->node map | |
if(parent) parent.children[key] = this; // add this node to its parent | |
this.child = (key) => { | |
key = key.toLowerCase(); | |
return this.children[key] || new Node(this, key, false); | |
} | |
this.toString = () => { | |
if(!this.parent) return this.key; | |
return (this.parent.toString() || "") + this.key; | |
}; | |
} | |
this.root = new Node(); | |
const constructor = (data) => { | |
this.add(data); | |
} | |
const add_rec = (str, node = this.root) => { | |
if(!str || str.length<=0) { | |
node.exists = (node!=this.root); | |
return; | |
} | |
let key = str[0]; | |
node = node.child(key); | |
return this.add_rec(str.slice(1), node); | |
}; | |
const add_loop = (str) => { | |
var node = this.root; | |
for(var i=0; i<str.length; i++) { | |
let key = str[i]; | |
node = node.child(str[i]); | |
} | |
node.exists = (node!=this.root); | |
} | |
// easy switch between loop and recursive version | |
this.add = (data) => { | |
if(Array.isArray(data)) | |
return data.forEach(el=>this.add(el)); | |
if(data) | |
return add_loop(data); | |
}; | |
constructor([...arguments]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment