Skip to content

Instantly share code, notes, and snippets.

View Eh2406's full-sized avatar

Jacob Finkelman Eh2406

  • Detroit
  • 01:11 (UTC -12:00)
View GitHub Profile
// AVLTree ///////////////////////////////////////////////////////////////////
// This file is originally from the Concentré XML project (version 0.2.1)
// Licensed under GPL and LGPL
//
// Modified by Jeremy Stephens.
// and by Jacob Finkelman.
// Pass in the attribute you want to use for comparing
function AVLTree(n, attr) {
return new AVLTree.prototype.init(n, attr);