Created
March 31, 2016 20:15
-
-
Save kirilloid/f00dca0013fad506df0914dacc54ba6d to your computer and use it in GitHub Desktop.
Cormen 10.4.5
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
/** | |
* @param {Node} node | |
* @template T | |
*/ | |
function Node (key, left, right) { | |
/** @property {T} key */ | |
this.key = key; | |
if (left) left.parent = this; | |
if (right) right.parent = this; | |
/** @property {Node<T>} left */ | |
this.left = left || null; | |
/** @property {Node<T>} right */ | |
this.right = right || null; | |
} | |
/** @property {Node<T>} parent */ | |
Node.prototype.parent; | |
/** | |
* Walks tree w/o using recursion or allocating extra space | |
* @template {T} | |
* @param {Node<T>} node | |
* @returns {Generator<T>} | |
* @usage [...walkTree(tree)] | |
*/ | |
function* walkTree (node) { | |
var prev = null, | |
right; | |
while (true) { | |
if (!node) return; | |
if (!prev || prev.parent !== node) { | |
yield node.key; | |
prev = node; | |
node = node.left || node.right || node.parent; | |
} else { | |
right = node.left === prev ? node.right : null; | |
prev = node; | |
node = right || node.parent; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment