- Home /
Help Sorting large class full of variables.,Creating and array of arrays of arrays of variables with different data types.
Hi, I have a data set that I'm very stumped on how to neatly orginise away.
The data set looks like this it's an class of about 600 variables. https://imgur.com/ABL0461
You can see that there is a structure to how they are laid out.
I would like to be able to access each yellow semicircle (group of three variables) from a seperate class.
What is the best way to organise this data? A struct,dictionary,array? I'm really stumped any help would be much appreciated.,Hi, I have a data set that I'm very stumped on how to neatly orginise away.
The data set looks like this it's an class of about 600 variables. https://imgur.com/ABL0461
You can see that there is a structure to how they are laid out.
I would like to be able to access each yellow semicircle (group of three variables) from a seperate class.
What is the best way to organise this data?
Answer by MSavioti · Sep 07, 2018 at 06:27 PM
You could treat this as a "database" or you could create classes for each of your yellow semi-circles. Anyway I'm not sure that a data structure could help you.