including the avltree sources
This commit is contained in:
parent
e0a3da2c39
commit
dcb94873fe
|
@ -1,7 +1,6 @@
|
||||||
#lang planet dyoo/whalesong
|
#lang planet dyoo/whalesong
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;; shuffle: vector -> vector
|
;; shuffle: vector -> vector
|
||||||
;; Reorders the contents of a vector according to the Fisher-Yates shuffling algorithm.
|
;; Reorders the contents of a vector according to the Fisher-Yates shuffling algorithm.
|
||||||
(define (shuffle! a-vec)
|
(define (shuffle! a-vec)
|
||||||
|
|
|
@ -38,7 +38,6 @@
|
||||||
jquery.js
|
jquery.js
|
||||||
jquery-protect-footer.js
|
jquery-protect-footer.js
|
||||||
|
|
||||||
jshashtable-2.1_src.js
|
|
||||||
js-numbers.js
|
js-numbers.js
|
||||||
|
|
||||||
baselib.js
|
baselib.js
|
||||||
|
@ -57,7 +56,14 @@
|
||||||
baselib-symbols.js
|
baselib-symbols.js
|
||||||
baselib-strings.js
|
baselib-strings.js
|
||||||
baselib-bytes.js
|
baselib-bytes.js
|
||||||
|
|
||||||
|
hashes-header.js
|
||||||
|
jshashtable-2.1_src.js
|
||||||
|
avltree.js
|
||||||
baselib-hashes.js
|
baselib-hashes.js
|
||||||
|
hashes-footer.js
|
||||||
|
|
||||||
|
|
||||||
baselib-regexps.js
|
baselib-regexps.js
|
||||||
baselib-paths.js
|
baselib-paths.js
|
||||||
baselib-boxes.js
|
baselib-boxes.js
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
// edits to flatten the namespace from goog.structs to just
|
// edits to flatten the namespace from goog.structs to just
|
||||||
// AvlTree, commented out inorderTraverse and reverseOrderTraverse.
|
// AvlTree, commented out inorderTraverse and reverseOrderTraverse.
|
||||||
//
|
//
|
||||||
// I'm considering changing the code to work with CPSed control flow.
|
|
||||||
//
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
// Original license follows:
|
// Original license follows:
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
@ -474,22 +472,6 @@ AvlTree.prototype.traverse_ =
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
// CPS'ed version of the traverse function
|
|
||||||
AvlTree.prototype.traverse_k_ =
|
|
||||||
function(traversalFunc_k, opt_startNode, opt_endNode, k) {
|
|
||||||
var node = opt_startNode ? opt_startNode : this.root_;
|
|
||||||
var endNode = opt_endNode ? opt_endNode : null;
|
|
||||||
var loop = function(node) {
|
|
||||||
if (node && node != endNode) {
|
|
||||||
traversalFunc_k.call(this, node, loop);
|
|
||||||
} else {
|
|
||||||
k();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return loop(node);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ensures that the specified node and all its ancestors are balanced. If they
|
* Ensures that the specified node and all its ancestors are balanced. If they
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*jslint unparam: true, vars: true, white: true, newcap: true, nomen: true, plusplus: true, maxerr: 50, indent: 4 */
|
/*jslint unparam: true, vars: true, white: true, newcap: true, nomen: true, plusplus: true, maxerr: 50, indent: 4 */
|
||||||
|
|
||||||
/*global Hashtable*/
|
/*global window,Hashtable*/
|
||||||
|
|
||||||
// Mutable hashtables.
|
// Mutable hashtables.
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@
|
||||||
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
// Whalesong's Hashtables are a thin wrapper around the Hashtable
|
// Whalesong's Hashtables are a thin wrapper around the mutable Hashtable
|
||||||
// class to make it printable and equatable.
|
// class to make it printable and equatable.
|
||||||
var WhalesongHashtable = function (type, hash_function, equality_function) {
|
var WhalesongHashtable = function (type, hash_function, equality_function) {
|
||||||
this.type = type;
|
this.type = type;
|
||||||
|
@ -164,4 +164,4 @@
|
||||||
exports.isHash = isHash;
|
exports.isHash = isHash;
|
||||||
|
|
||||||
|
|
||||||
}(this.plt.baselib, Hashtable));
|
}(window.plt.baselib, Hashtable));
|
1
js-assembler/runtime-src/hashes-footer.js
Normal file
1
js-assembler/runtime-src/hashes-footer.js
Normal file
|
@ -0,0 +1 @@
|
||||||
|
}());
|
1
js-assembler/runtime-src/hashes-header.js
Normal file
1
js-assembler/runtime-src/hashes-header.js
Normal file
|
@ -0,0 +1 @@
|
||||||
|
(function() {
|
|
@ -1,54 +0,0 @@
|
||||||
// Lightweight linking of the modules.
|
|
||||||
// There are circular dependencies across the modules unfortunately, so we
|
|
||||||
// need a mechanism for letting them link to each other.
|
|
||||||
if (! this['plt']) { this['plt'] = {}; }
|
|
||||||
(function(scope) {
|
|
||||||
var link = {};
|
|
||||||
scope['link'] = link;
|
|
||||||
|
|
||||||
// link.ready: (string (string -> void)) -> void
|
|
||||||
// When the name announces that it's ready, calls the function f.
|
|
||||||
link.ready = function(name, f) {
|
|
||||||
readyWaiters[name] = readyWaiters[name] || [];
|
|
||||||
readyWaiters[name].push(f);
|
|
||||||
|
|
||||||
if (linkIsReady[name]) {
|
|
||||||
notifySingle(f, name);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// link.announceReady: string -> void
|
|
||||||
// Lets the world know that the name is ready.
|
|
||||||
link.announceReady = function(name) {
|
|
||||||
var i;
|
|
||||||
linkIsReady[name] = true;
|
|
||||||
notifyAll(name);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// notifyAll: string -> void
|
|
||||||
// Tell all listeners that the name is ready.
|
|
||||||
var notifyAll = function(name) {
|
|
||||||
var waiters = readyWaiters[name] || [], i;
|
|
||||||
for (i = 0 ; i < waiters.length; i++) {
|
|
||||||
notifySingle(waiters[i], name);
|
|
||||||
}
|
|
||||||
readyWaiters[name] = [];
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// Tell a single listener that the name is ready.
|
|
||||||
var notifySingle = function(f, name) {
|
|
||||||
setTimeout(function() { f(name); },
|
|
||||||
0);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// linkIsReady: (Hashtable String Boolean)
|
|
||||||
var linkIsReady = {};
|
|
||||||
|
|
||||||
// readyWaiters: (Hashtable String (Arrayof (String -> Void)))
|
|
||||||
var readyWaiters = {};
|
|
||||||
|
|
||||||
|
|
||||||
})(this['plt']);
|
|
Loading…
Reference in New Issue
Block a user