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
You will probably appreciate
SICP and
PAIP.
Re: Tree and linked list in lisp
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.