Perl Data Structures


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Perl Data Structures
# 1  
Old 04-13-2010
Perl Data Structures

Here is what i need to do.

Code:
@data #has all column wise data so say info for col 1 location for all rows would be in this array

Code:
$array[index] = \@data

But i need to create a file which should contain these information in a format for all columns even if i have got no values from some of the index say $array[1] could be null.

So the @array would store data in a columnar form which would also include some blank columns.

Example -
Code:
$array[0] = \@data  #@data=(1,2,3)
$array[1] = NULL
$array[2] = \@data1 #@data=(A,B,C)

Need to format the data in this way
Code:
1||A
2||B
3||C

I have the rowcount of records and count of columns need to make it generic

Last edited by dinjo_jo; 04-13-2010 at 05:27 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Programming

Signalsafe data structures

Hello, I have a signal handler which manipulates a data structure. The data structure's operations aren't atomic. So if two threads/processes are in a critical section at the same time the data structure will be broken. With threads you can avoid this stuff with semaphores etc. However,... (10 Replies)
Discussion started by: littlegnome
10 Replies

2. Programming

shared memory - userdefined data structures

Hello, I wonder if I can write my userdefined data structures(ex: a list) to a shared memory segment? I know, the shm functions get (void*) parameter so I should be able to read and write a list into the shared memory. may someone inform and clarify me about that, please? (1 Reply)
Discussion started by: xyzt
1 Replies

3. Programming

Recommendations For Generic C Data Structures & Algorithms

Hi All, Rather than re-invent the wheel, I am trying to find a mature C library that provides generic support for lists, trees, etc. I understand C doesn't formally support "generics", but am aware of a few solutions like GLib and SGLib. Can anyone kindly recommend what they think is best?... (1 Reply)
Discussion started by: tristan12
1 Replies
Login or Register to Ask a Question