Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Correction to Database problem

by jasonk (Parson)
on Feb 15, 2003 at 15:25 UTC ( [id://235568]=note: print w/replies, xml ) Need Help??


in reply to Correction to Database problem

So, it sounds to me like you have a 'son' number, and you want to find the 'father' of the son, and the father of the father (the sons grandfather you could say).

The code you have will work in your second case, if you just put the variable instead of the number, but there are several more elegant methods you could use, this is how I would probably do it...

sub father_of { my $find = shift; my $data_file = "reff.data"; open(DAT, $data_file) || die "Could not open file: $!"; foreach(<DAT>) { chomp; my($son,$father) = split; if($son == $find) { return $father; } } close(DAT); } my $son = 1045316419; my $father = father_of($son); my $grandfather = father_of($father); print "The son is $son\n"; print "The father of $son is $father\n"; print "The father of $father is $grandfather\n";

This has a couple of advantages, you have reusable code rather than duplicating the search code every time, and it doesn't read the entire file into memory,

If you did want to read the whole file into memory, storing it as a has makes it easier to use:

open(DAT,$data_file) || die "Couldn't open file": foreach(<DAT>) { chomp; my($son,$father) = split; $fathers{$son} = $father; } close(DAT); my $son = 1045316419; my $father = $fathers{$son}; my $grandfather = $fathers{$father};

(See perldata for more info on hashes)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-19 22:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found