Skip to content

Instantly share code, notes, and snippets.

View livoras's full-sized avatar
🎯
Focusing

Livoras Dai livoras

🎯
Focusing
  • Guangzhou, Guangdong, China
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.
// Pass in the attribute you want to use for comparing
function AVLTree(n, attr) {
this.init(n, attr);
}