IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Hierarchical set of data which i would like to store in 2D


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
jagjit

New User


Joined: 28 Dec 2006
Posts: 18
Location: india

PostPosted: Wed Apr 18, 2007 2:45 pm
Reply with quote

hi,
i am having hierarchical set of data which i would like to store in 2D array . data is somewhat like this

Code:
level-1                                       a(1,1)
level-2                     b(2,1)                             c(2,2)
level-3               d(3,1)     e(3,2)               f(3,3)      g(3,4)  h(3,5)

there can be n number of levels and maximum limit of no. of elements in level is 2000. Now i need to traverse from top to bottom and stores each data in 2D array using 3 loop at the max.
here a is parent of b and c
b is parent of d,e
c is parent of f,g and h
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Wed Apr 18, 2007 3:00 pm
Reply with quote

Very pretty, not much sense, but interesting.
If you are asking if you can do that, the answer is yes.
If you are not asking that, what are you asking?
Back to top
View user's profile Send private message
jagjit

New User


Joined: 28 Dec 2006
Posts: 18
Location: india

PostPosted: Wed Apr 18, 2007 3:09 pm
Reply with quote

i would like to develop an internal table in cobol for the same purpose. to add more it may happpen that few members at a particular level doesnot have children but other may continue to move down. the 2D array to be design can stores all member to any 'n' level. i need a help in designing loop for it in cobol.
Back to top
View user's profile Send private message
sandeep1dimri

New User


Joined: 30 Oct 2006
Posts: 76

PostPosted: Wed Apr 18, 2007 3:43 pm
Reply with quote

need to look into tree data structure and then use the appropriate data type. yes this can also be done with two D array with defination like
my-array [n][2000]

initialize the array with default value and if this array can have all values then need to go for array like [n][2000][1].
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Store the data for fixed length COBOL Programming 1
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts SCOPE PENDING option -check data DB2 2
No new posts Check data with Exception Table DB2 0
No new posts JCL EXEC PARM data in C Java & MQSeries 2
Search our Forums:

Back to Top