bbtree: add reference.
1 files changed, 6 insertions(+), 0 deletions(-) M src/arew/data/bbtree.scm
M src/arew/data/bbtree.scm => src/arew/data/bbtree.scm +6 -0
@@ 6,6 6,12 @@ (import (scheme base) (scheme fixnum)) + ;; + ;; Balanced binary tree based on LBST and slib wttree + ;; + ;; ref: https://scholar.google.fr/scholar?cluster=16806430159882137269 + ;; + (define-record-type <bbtree> (%make-bbtree comparator root) bbtree?