Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: How to implement Linked List

by gam3 (Curate)
on Dec 19, 2006 at 04:07 UTC ( [id://590600]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $c = ['c', undef];
    $b = ['b', undef];
    ...
    
    $a->[1] = $b;
    $b->[1] = $c;
    
  2. or download this
    my $current = $a;
    
    ...
        ...
        $current = $current->{1];
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://590600]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (2)
As of 2024-04-20 05:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found