by Richard Allbert » 25 Dec 2007, 15:25
Hi,
A bit late for a reply... but just for info, when I first started trying to make a chess program, I used linked lists (as per my C++ reference book). The prgram was very slow.
Then, I read some of the open sources out there, and realised the fixed array method was always used, implemented it and saw a 7x speed up in the program.
Richard