Nodejs Utililty Methods Tree Sort

List of utility methods to do Tree Sort

Description

The list of methods to do Tree Sort are organized into topic(s).

Method

TreeSort()
function TreeSort() {
    this.left = null;
    this.right = null;
    this.value = null;
TreeSort.prototype.add = function (value) {
    if (value != null && typeof value != 'undefined') {
        if (this.value == null) {
            this.value = value;
...