[futurebasic] Re: Linked Lists

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : September 1998 : Group Archive : Group : All Groups

From: Paul Bruneau <paul_bruneau@...>
Date: Mon, 28 Sep 1998 09:15:24 -0400
Peter Bancroft wrote:
> 
(snip)
> 
> You could implement this as an array.
> With some of the array elements being the address of the links.
> 
This seems to me to be a bad suggestion. The beauty of the linked list is that
you don't have to worry about free records, remaining space (you have the
whole heap basically at your disposal), and other administration.

Maybe I'm missing something, but I'd sooner die than code a linked list using
anything but handles.

PB