in reply to finding next key in db_file
It sounds like you are looking for a linked list, specifically a doubly-linked list. perlfaq4 has "How do I handle linked lists?", which has a basic example of how you could construct a linked list. In addition, Chapter 3 of Mastering Algorithms with Perl has several examples of how to implement various types of linked lists. I searched CPAN but didn't find anything that looked promising (HTML::LinkList looked interesting, but I don't think it does what you're looking for here).
Update: OOP/Linked List Question may also be of help.
HTH
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: finding next key in db_file
by sulfericacid (Deacon) on Aug 16, 2006 at 04:29 UTC | |
by bobf (Monsignor) on Aug 16, 2006 at 04:55 UTC | |
by sulfericacid (Deacon) on Aug 16, 2006 at 05:04 UTC |