Search found 6 matches
- Sun May 27, 2012 2:50 pm
- Forum: Common Lisp
- Topic: how to avoid this stackoverflow?
- Replies: 2
- Views: 4985
Re: how to avoid this stackoverflow?
Thanks a lot for your help wvxvw!
- Sun May 27, 2012 11:20 am
- Forum: Common Lisp
- Topic: how to avoid this stackoverflow?
- Replies: 2
- Views: 4985
how to avoid this stackoverflow?
Hi! consider: (defstruct A left right) (setf i (make-a) j (make-a :left i)) at this point >j #S(A :LEFT #S(A :LEFT NIL :RIGHT NIL) :RIGHT NIL) now obviously adding (setf (a-right i) j) will result in a stack overflow,since >j #S(A :LEFT #S(A :LEFT NIL :RIGHT #S(A :LEFT #S(A :LEFT NIL :RIGHT ..... an...
- Thu Mar 08, 2012 1:25 pm
- Forum: The Lounge
- Topic: the 8 puzzle
- Replies: 3
- Views: 10719
Re: the 8 puzzle
thanks a lot guys.i hadn't noticed the proof sketch on wikipedia.It needed more creativity than i thought(i'm talking about the definition of the parity function). Anyhow,i still think it's a bit odd that the authors of the book easily mention that without any allusion to any proof,while they tend t...
- Wed Mar 07, 2012 11:13 am
- Forum: The Lounge
- Topic: the 8 puzzle
- Replies: 3
- Views: 10719
the 8 puzzle
Hi guys!a math question: i've spent lots of hours trying to figure it out,so if it seems easy,i'm just dumb not lazy^^ anyhow: i'm reading the artificial intelligence book by russel and norvig,where the 8 puzzle is described as the usual 3*3 board with 8 numbered tiles and an empty cell... the autho...
- Sun Mar 04, 2012 4:39 pm
- Forum: Common Lisp
- Topic: Hi!two very quick noobish questions
- Replies: 3
- Views: 5668
Re: Hi!two very quick noobish questions
Thx a lot!i'll start reading those right now!
- Sun Mar 04, 2012 11:20 am
- Forum: Common Lisp
- Topic: Hi!two very quick noobish questions
- Replies: 3
- Views: 5668
Hi!two very quick noobish questions
Hi guys! i'm a total noob at lisp,so please excuse me if you find those questions dumb: i conclude from the code below that '(1 . 2) just makes one single cons with its car pointing to 1 and its cdr pointing to 2, while '(1 2) will create a list of two cons,with their car respectively pointing to 1 ...