Tree and linked list in lisp

You have problems, and we're glad to hear them. Explain the problem, what you have tried, and where you got stuck.
Feel free to share a little info on yourself and the course.
Forum rules
Please respect your teacher's guidelines. Homework is a learning tool. If we just post answers, we aren't actually helping. When you post questions, be sure to show what you have tried or what you don't understand.
Post Reply
Ehsan
Posts: 8
Joined: Thu Jul 12, 2012 7:39 am

Tree and linked list in lisp

Post by Ehsan » Mon Jul 23, 2012 2:31 am

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

nuntius
Posts: 538
Joined: Sat Aug 09, 2008 10:44 am
Location: Newton, MA

Re: Tree and linked list in lisp

Post by nuntius » Mon Jul 23, 2012 10:33 pm

You will probably appreciate SICP and PAIP.

saulgoode
Posts: 45
Joined: Tue Dec 14, 2010 1:39 am

Re: Tree and linked list in lisp

Post by saulgoode » Tue Jul 24, 2012 7:50 am

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.

Post Reply