The perl-data-structures tag has no wiki summary.
18
votes
4answers
18k views
How can I store multiple values in a Perl hash table?
Up until recently, I've been storing multiple values into different hashes with the same keys as follows:
%boss = (
"Allan" => "George",
"Bob" => "George",
"George" => "lisa" ...
9
votes
6answers
2k views
How to get hashes out of arrays in Perl?
I want to write a little "DBQuery" function in perl so I can have one-liners which send an SQL statement and receive back and an array of hashes, i.e. a recordset. However, I'm running into an issue ...
7
votes
6answers
229 views
Is there a way to replace an if-elsif-else in Perl with something better?
I want to build a bunch of Perl subrotines that all have the same template if elsif elsif else that takes a decision based on a factor variable. Here's an example of subroutine template:
sub get_age{
...
6
votes
3answers
133 views
Perl multi-dimensional table with headers
I'm trying to implement a multi-dimensional table with headers.
Here's an example for 2D:
< dimension1 >
/\ 'column0' 'column1'
dimension0 'row0' ...
6
votes
1answer
140 views
What kind of data format is this?
I have a bunch of data files of the following form:
("String"
:tag1 (value)
:tag2 (value2)
:tag3 (
:nested_tag1 (foo)
:nested_tag2 (
:nested2_tag1 (
...
6
votes
2answers
116 views
Can references be made without declaring a variable first?
I have this code that works
my @new = keys %h1;
my @old = keys %h2;
function(\@new, \@old);
but can it be done without having to declare variables first?
function must have its arguments as ...
6
votes
1answer
229 views
Including Hashes within Hashes in Perl
G'Day,
I'm currently working on creating big hashes from a lot of smaller hashes. Let's say that these smaller hashes are defined in a file each, and then can be included by the bigger hash.
For ...
6
votes
5answers
845 views
Dynamically/recursively building hashes in Perl?
I'm quite new to Perl and I'm trying to build a hash recursively and getting nowhere. I tried searching for tutorials to dynamically build hashes, but all I could find were introductory articles about ...
6
votes
5answers
222 views
How do I create a hash of hashes in Perl?
Based on my current understanding of hashes in Perl, I would expect this code to print "hello world." It instead prints nothing.
%a=();
%b=();
$b{str} = "hello";
$a{1}=%b;
$b=();
$b{str} = ...
5
votes
2answers
354 views
Perl - Hash of hash and columns :(
I've a set of strings with variable sizes, for example:
AAA23
AB1D1
A1BC
AAB212
My goal is have in alphabetical order and unique characters collected for COLUMNS, such as:
first column : AAAA
...
5
votes
8answers
3k views
How to iterate through Hash (of Hashes) in Perl?
I have Hash where values of keys are other Hashes.
Example: {'key' => {'key2' => {'key3' => 'value'}}}
How can I iterate through this structure?
5
votes
5answers
210 views
How do I access the array's element stored in my hash in Perl?
# I have a hash
my %my_hash;
# I have an array
@my_array = ["aa" , "bbb"];
# I store the array in my hash
$my_hash{"Kunjan"} = @my_array;
# But I can't print my array's element
print ...
4
votes
2answers
87 views
Algorithm Efficiency Improvement
First I would like to apologize if this question has been asked. It is difficult to search for the answer w/o finding how to create arrays of hashes and hashes of arrays....
I am creating a log ...
4
votes
3answers
81 views
how to have hash of list in perl
Sorry for this syntax question. I fail to find the solution.
I want to have an array of hashs in perl, each of them has string and array.
I'm trying to write the following code:
use strict;
my @arr = ...
4
votes
1answer
265 views
A DAG : Self referencing HASH: searching the first level parent from any level child and then search leaves of that parent
I have netlist (collection of subcircuits) of circuit schematic, generally is created by some SPICE simulator. It generally has hierarchy (A top level subcircuit calls or instantiates different ...
4
votes
2answers
217 views
How can I create a hash of hashes from an array of hashes in Perl?
I have an array of hashes, all with the same set of keys, e.g.:
my $aoa= [
{NAME=>'Dave', AGE=>12, SEX=>'M', ID=>123456, NATIONALITY=>'Swedish'},
{NAME=>'Susan', AGE=>36, ...
4
votes
1answer
244 views
References in Perl: Array of Hashes
I want to iterate through a reference to an array of hashes without having to make local copies, but I keep getting Can't use string ("1") as an ARRAY ref while "strict refs" errors. Why? How do I fix ...
4
votes
1answer
306 views
How do I access a value of a nested Perl hash?
I am new to Perl and I have a problem that's very simple but I cannot find the answer when consulting my Perl book.
When printing the result of
Dumper($request);
I get the following result:
...
3
votes
6answers
108 views
Defining a hash value using another hash value.
Is there a way to do the following while using only one data structure?
my %hash = (
"key1" => "value1",
"key2" => "value2",
"key3" => $hash{key1},
);
So basically, I want to set a ...
3
votes
1answer
54 views
unpack function not giving similar result
I have a binary file and to get the content I have used "unpack" function.
My script can run for both 32 bit exe or 64 bit exe. Hence I have used the following code :
if ( ...
3
votes
3answers
116 views
What is the data structure of this variable in perl?
I am new to perl and reading a code written in perl. A line reads like this:
$Map{$a}->{$b} = $c{$d};
I am familiar with hash looking like %samplehash and accessed as $samplehash{a}="b"
but ...
3
votes
3answers
66 views
Trouble converting array to hash
I have an array where elements of the array have values that are separated by tabs.
For example:
client_name \t owner \t date \t port_number.
I need to convert that into a hash so it can be dumped ...
3
votes
2answers
60 views
How do I process a partial order of tasks concurrently using Perl?
I have a partially ordered set of tasks, where for each task all of the tasks that are strictly before it in the partial order must be executed before it can be executed. I want to execute tasks which ...
3
votes
3answers
128 views
I dont understand this Perl Syntax,anyone has any idea?
I have got this part from a perl plugin.But I dont understand what does it do?Is it an array of associative arrays?If so then shouldnt it be started wuth @?Can anyone shed some light on this issue?
...
3
votes
5answers
320 views
perl array vs list
I have two data structures in Perl:
An array:
my @array2 = ( "1", "2", "3");
for $elem (@array2) {
print $elem."\n";
}
Giving me the following output:
1
2
3
And a list:
my @array = [ "1", ...
3
votes
1answer
354 views
How do I create a 2D array in Perl?
I am new in program Perl Script.
My problem is how to create a 2d array in Perl
my code:
my @wordsList=();
my @words=();
for ($id=0; $id<=@language.length; $id++)
{
my $eng = ...
3
votes
3answers
195 views
Perl: Counting elements in a complex data structure
I am new to complex data structures. I kind of understand the idea behind them but am having some difficulty getting the data out. I found out the structure of my current problem child by using ...
3
votes
4answers
272 views
How to expand a Hash of Arrays?
I don't know if "expand" is the right word, but here is what I would like to do =)
This script
#!/usr/bin/perl
use warnings;
use strict;
my %HoA = (
group1 => [ "user1", "user2" ],
...
3
votes
1answer
223 views
Editing help with perl script to start and stop at specific places within an array
Looking for troubleshooting and editing help. This is a homework assignment. My professor encourages the use of forums. I don't have experience with Perl Functions or Subs yet so please limit ...
3
votes
7answers
335 views
How can I merge several hashes into one hash in Perl?
In Perl, how do I get this:
$VAR1 = { '999' => { '998' => [ '908', '906', '0', '998', '907' ] } };
$VAR1 = { '999' => { '991' => [ '913', '920', '918', '998', '916', '919', '917', '915', ...
3
votes
4answers
239 views
How do I delete a [sub]hash based off of the keys/values of another hash?
Lets assume I have two hashes. One of them contains a set of data that only needs to keep things that show up in the other hash.
e.g.
my %hash1 = (
test1 => { inner1 => { more => ...
3
votes
4answers
2k views
How can I create a nested hash as a constant in Perl?
I want to do, in Perl, the equivalent of the following Ruby code:
class Foo
MY_CONST = {
'foo' => 'bar',
'baz' => {
'innerbar' => 'bleh'
},
}
def some_method
a = ...
3
votes
3answers
1k views
How can I sort Perl hashes whose values are array references?
Hey I was just wondering if there is a cool "one liner" that would sort my hash holding array references. So I have a bunch of key/values in my hash something like:
$DataBase{$key} = \@value;
...
3
votes
5answers
8k views
Sort by value hash of hash of hashes Perl
I have a hash structure similar to the following:
KeyA => {
Key1 => {
Key4 => 4
Key5 => 9
Key6 => 10
...
2
votes
3answers
107 views
Storing multiple values in one key in a hash of hash using Perl
I am trying to create a data structure to store data I am pulling off a database:
$Interaction{$TrGene}={
CisGene => $CisGene,
E => $e,
Q => $q,};
A single $TrGene is associated to a ...
2
votes
2answers
82 views
loop through a complex hash structure
I have the following hashed structure $chainStorage{$R1}{$S1}{$C1} = \@A1
$chainStorage = {
'ACB' => {
'E' => {'06' => [100, 200, 95]}
'B' => {'23' ...
2
votes
1answer
48 views
XML::Simple is it possible to eliminate tag description?
I'm trying to parse an xml file using XML::Simple library.
In a designed way a line like:
<opt one="1">Text</opt>
well be parsed to
{ 'one' => 1, 'content' => 'Text' }
is it ...
2
votes
2answers
54 views
How to access elements in this data structure?
I have a variable called $ip_data and when I do 'print $ip_data;'
it shows something like this: ARRAY(0x3c353cc4);
Data::Dump gives me the following structure:
[
{
ip => "127.0.0.1",
list ...
2
votes
3answers
86 views
How to print out complex hash without repeating the second level keys?
Hi I have a hash of hash containing class name, number of students enrolled and the names of student. How do I print out this hash without repeating the second level keys.
Example: My data that I fill ...
2
votes
5answers
81 views
More elegant way of accessing hashed arrays
Firstly, appologies if i get any terminology wrong on the upcoming post, this is all still very new to me.
Some background, I have a script that checks our archived network configs for a specific set ...
2
votes
3answers
174 views
Perl Multi hash vs Single hash
I want to read and process sets of input from a file and then print it out.
There are 3 keys which I need to use to store data.
Assume the 3 keys are k1, k2, k3
Which of the following will give ...
2
votes
3answers
151 views
How do I loop through a hash?
Given the following variable:
$test = {
'1' => 'A',
'2' => 'B',
'3' => 'C',
'4' => 'G',
'5' => 'K',
}
How can loop through all assignments without knowing which keys I ...
2
votes
2answers
125 views
How do I pass all elements of “array of hashes” into function as an array
How do I pass a element of "array of hashes" into function as an array?
say for instance I wanted to pass all $link->{text} as an array into the sort() function.
#!/usr/bin/perl
use strict; use ...
2
votes
3answers
125 views
Perl How to access a hash that is the element of an array that is the value of another hash?
I am trying to create a Hash that has as its value an array.
The first element of the value(which is an array) is a scalar.
The second element of the value(which is an array) is another hash.
I have ...
2
votes
3answers
172 views
perl sort key then by subkey--if subkey undef set to null string
my %data (
KEY1 => {
SUBKEY1 => "Canada",
SUBKEY3 => "75.00",
SUBKEY2 => "50.00",
},
KEY3 => {
SUBKEY2 => "150.00",
},
KEY2 ...
2
votes
1answer
338 views
New Perl user: using a hash of arrays
I'm doing a little datamining project where a perl script grabs info from a SQL database and parses it. The data consists of several timestamps. I want to find how many of a particular type of ...
2
votes
4answers
201 views
How can I store an inventory using Perl hashes?
For an assignment in college, we have to make a script in Perl that allows us to manage an inventory for an e-store. (The example given was Amazon). Users can make orders in a fully text-based ...
2
votes
3answers
2k views
How do I create an array of hashes and loop through them in Perl?
I'm trying to create an array of hashes, but I'm having trouble looping through the array. I have tried this code, but it does not work:
for ($i = 0; $i<@pattern; $i++){
while(($k, $v)= each ...
1
vote
3answers
86 views
Iterating over a complex data structure
I have what appears to be a hash of a hash of an array of hashes. I'm trying to pull some values out and I'm stumped (this is way deeper than I would go with a structure. It looks like this.....
...
1
vote
3answers
94 views
How to get a list of leaf subdirectories in a root folder in Perl
I am very new to Perl (scripting languages in general) and I was wondering how to use Perl to get a lisitng of all the leaf directories in Perl. For example, lets say my root directory is C:
C: -> ...