Page 1 of 1
Tree and linked list in lisp
Posted: Mon Jul 23, 2012 2:31 am
by Ehsan
Hi every one . I'm beginner in lisp and I need a references about how to build data structure like tree or graph and implement search like breadth first search .
Can any one tell me good Reference
tnx
Re: Tree and linked list in lisp
Posted: Mon Jul 23, 2012 10:33 pm
by nuntius
You will probably appreciate
SICP and
PAIP.
Re: Tree and linked list in lisp
Posted: Tue Jul 24, 2012 7:50 am
by saulgoode
If you don't mind reading a bit of C code then
GNU's libavl documentation provides some of the most comprehensive coverage of binary trees I know of. It is written in a sort of "Donald Knuth documented code" style.