vote up 1 vote down star

Hi everyone,

I am new to Perl. I need to define a data structure in Perl that looks like this:

  city 1 -> street 1 - [ name , no of house , senior people ]
            street 2 - [ name , no of house , senior people ]


  city 2 -> street 1 - [ name , no of house , senior people ]
            street 2 - [ name , no of house , senior people ]

How can I acheive this?

flag
Do you want to create it programmatically or just define those variables like that once off? – Salgar Aug 13 at 9:30
programmatically – Sam Aug 13 at 9:33
1  
Are you trying to read in this data from a file of some kind? If so, please supply a short example of that file (feel free to remove the real names and addresses, naturally), so that people can see the format you're working with. More generally, you should take a look at perldoc perlreftut for a good introductory discussion of how to make and use references and perldoc perldsc for a wonderful cookbook of pre-made structures. You can get both via the terminal or online: perldoc.perl.org/index-tutorials.html – Telemachus Aug 13 at 9:34
thank you very much sir – Sam Aug 13 at 9:38
Ya, i am reading from database and doing database programming – Sam Aug 13 at 9:39

3 Answers

vote up 4 vote down

I found the answer like

my %city ;

 $city{$c_name}{$street} = [ $name , $no_house , $senior];

i can generate in this way

link|flag
1  
Do you have this information in a file or spreadsheet or database of some kind? I doubt that you want to use your program purely for data entry, so it would be easier to figure out the structure of the data and then read the records directly into the complex data structure. (Note that you already have one typo - $stret for $street. Hand entering a lot of data is very error prone.) – Telemachus Aug 13 at 9:36
thank you very much sir – Sam Aug 13 at 9:38
vote up 2 vote down

Here is an another example using a hash reference:

my $data = {
    city1 => {
        street1 => ['name', 'house no', 'senior people'],
        street2 => ['name','house no','senior people'],
    },
    city2 => {
        street1 => etc...
        ...
    }
};

You then can access the data the following way:

$data->{'city1'}->{'street1'}->[0];

Or:

my @street_data = @{$data->{'city1'}->{'street1'}};
print @street_data;
link|flag
You only need ->, where it is obvious that you are working against a reference. So this $data->{'city1'}{'street1'}[0]; would work just as well. – Brad Gilbert Aug 13 at 18:02
vote up 1 vote down

The Perl Data Structures Cookbook, perldsc, may be able to help. It has examples showing you how to create common data structures.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.