Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: X, Y Table structure

by LanX (Saint)
on May 10, 2011 at 01:39 UTC ( [id://903877]=note: print w/replies, xml ) Need Help??


in reply to X, Y Table structure

HI

sorry, I'm tired and it smells like homework...

So here only a stub for you to work on:

(Showing how to use a HoH to represent a table)

use strict; use Data::Dumper; my (%h,%x,%y); scalar <DATA>; while(<DATA>){ chomp; my ($id, $size, $qty, $price)= split /\s*,\s*/,$_ ; $h{$qty}{$size}=$price; $y{$qty}=1; $x{$size}=1; } for my $y (sort keys %y) { for my $x (sort keys %x) { if (exists $h{$y}{$x}) { print "$h{$y}{$x}\t"; }else { print "\t" } } print "\n"; } __DATA__ id, size, qty, price 1 , 1 , 100, 43 2 , 1 , 250, 52 4 , 2 , 100, 45 5 , 2 , 250, 55 6 , 3 , 100, 50 7 , 3 , 250, 56 8 , 4 , 200, 55 9 , 5 , 250, 61

OUTPUT:

43 45 50 55 52 55 56 61

Cheers Rolf

Replies are listed 'Best First'.
Re^2: X, Y Table structure
by Anonymous Monk on May 10, 2011 at 01:56 UTC

    No it's not a homework, it's an actual work.

    Thanks for your input

        Thanks, this really helps

Log In?
Username:
Password:

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

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

    No recent polls found