2d ( 3d, ). (product_id, time_period).
2D- , , 2D-, . , , .
, , 2D- ( D). , , (product_id, time_period). , , 2D- . , .
, , ,
struct element_t element[NUMBER_OF_PRODUCTS][NUMBER_OF_TIME_PERIODS];
...
for (p = max_product_id; p >= 0; p--) {
for (t = max_time_period; t >= 0; t--) {
process(element[p][t]);
}
}
, , , . , , , ( ), .
, , " ".
, , , . , / , , . (, (xOR )), . , , , , , . , ( , , , , , ). .
source
share