Re: linked list in perl

2006-09-20 Thread Tom Phoenix
On 9/20/06, Christian Stalp [EMAIL PROTECTED] wrote: I need a Tipp how I can create a linked ring-list in Perl. I know well that arrays in Perl are already realized as linked list, but what I need is a ring-list. Means that at the last element owns a reference to the first element. What are

RE: linked list in perl

2006-09-20 Thread Thomas Bätzler
Christian Stalp [EMAIL PROTECTED] asked: I need a Tipp how I can create a linked ring-list in Perl. I know well that arrays in Perl are already realized as linked list, but what I need is a ring-list. Means that at the last element owns a reference to the first element. Has anybody an