Click here to Skip to main content
15,884,537 members
Articles / Programming Languages / C++11

An In-place Multidimensional C++ Array

Rate me:
Please Sign up or sign in to vote.
4.94/5 (13 votes)
16 Jun 2019CPOL 17.6K   7   19
Create dynamic multidimensional arrays in place

Introduction

Often, you need a C++ multidimensional array. It's easy if it's static, for example:

C++
int a[5][10];

However, when the length is variable, you can't do int a[n1][n2]; Usually we use std::vector, but this requires manual construction:

C++
int n1 = 5;
int n2 = 6;
std::vector<std::vector<int>> v;
v.resize(n1);
for(auto& vv : v)
  vv.resize(n2);

This wastes time, since there are multiple memory allocations. It would be nicer if we could allocate once. However, this doesn't work:

C++
std::vector<char> v(1000); 
int** n = (int**)v.data();
n[0][0] = 5; // boom

It crashes, and we would have to initialize using a for loop.

Code

C++ 11 and variadic templates come to our help:

C++
template <typename T = char> size_t CreateArrayAtMemory(void*, size_t bs)
{
    return bs*sizeof(T);
}

template <typename T = char,typename ... Args>
size_t CreateArrayAtMemory(void* p, size_t bs, Args ... args)
{
    size_t R = 0;
    size_t PS = sizeof(void*);
    char* P = (char*)p;
    char* P0 = (char*)p;

    size_t BytesForAllPointers = bs*PS;
    R = BytesForAllPointers;

    char* pos = P0 + BytesForAllPointers;
    for (size_t i = 0; i < bs; i++)
    {
        char** pp = (char**)P;
        if (p)
            *pp = pos;
        size_t RLD = CreateArrayAtMemory<T>(p ? pos : nullptr, args ...);
        P += PS;
        R += RLD;
        pos += RLD;
    }
    return R;
}

This recursive function accepts a number of arguments (declaring the dimensions of the array) and modifies the memory pointer passed to it so casting it to a multidimensional array is safe. If nullptr is passed, then it returns the bytes needed for the allocation.

For example, a single dimension array:

C++
int j = 0x21;
size_t n1 = CreateArrayAtMemory(nullptr,2);
vector<char> a1(n1);
char* f1 = (char*)a1.data();
CreateArrayAtMemory(f1,2);
for (int i1 = 0; i1 < 2 ; i1++)
{
    f1[i1] = j++;
}
for (int i1 = 0; i1 < 2 ; i1++)
{
    std::cout << (int)f1[i1] << " ";
}
std::cout << std::endl << n1 << " bytes used " << std::endl;

Expected output:

33 34
2 bytes used

Now a two dimension array 2x3 of shorts:

C++
int j = 0x21;
size_t n2 = CreateArrayAtMemory<short>(nullptr,2,3);
vector<char> a2(n2);
short** f2 = (short**)a2.data();
CreateArrayAtMemory(f2,2,3);
for (int i1 = 0; i1 < 2; i1++)
{
    for (int i2 = 0; i2 < 3; i2++)
    {
        f2[i1][i2] = j++;
    }
}
// Dump
for (int i1 = 0; i1 < 2; i1++)
{
    for (int i2 = 0; i2 < 3; i2++)
    {
        std::cout << (int)f2[i1][i2] << " ";
    }
}
std::cout << std::endl << n2 << " bytes used " << std::endl;
std::cout << std::endl;
33 34 35 36 37 38
20 bytes used

Some bigger stuff with 2x3x4x5x6:

C++
int j = 0x21;
size_t n5 = CreateArrayAtMemory<int>(a5, 2,3,4,5,6);
vector<char> a5(n5);
int***** f5 = (int*****)a5.data();
CreateArrayAtMemory(f5,2,3,4,5,6);
for (int i1 = 0; i1 < 2; i1++)
{
    for (int i2 = 0; i2 < 3; i2++)
    {
        for (int i3 = 0; i3 < 4; i3++)
        {
            for (int i4 = 0; i4 < 5; i4++)
            {
                for (int i5 = 0; i5 < 6; i5++)
                {
                    f5[i1][i2][i3][i4][i5] = j++;
                }
            }
        }
    }
}

// Dump
for (int i1 = 0; i1 < 2; i1++)
{
    for (int i2 = 0; i2 < 3; i2++)
    {
        for (int i3 = 0; i3 < 4; i3++)
        {
            for (int i4 = 0; i4 < 5; i4++)
            {
                for (int i5 = 0; i5 < 6; i5++)
                {
                    std::cout << (int)f5[i1][i2][i3][i4][i5] << " ";
                }
            }
        }
    }
}
std::cout << std::endl << n5 << " bytes used " << std::endl;
std::cout << std::endl;
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752

3488 bytes used

Have fun with it!

History

  • 16th June, 2019: First release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Greece Greece
I'm working in C++, PHP , Java, Windows, iOS, Android and Web (HTML/Javascript/CSS).

I 've a PhD in Digital Signal Processing and Artificial Intelligence and I specialize in Pro Audio and AI applications.

My home page: https://www.turbo-play.com

Comments and Discussions

 
Questionerror in 3rd examlple Pin
Vasyl Cherpak6-May-23 8:05
Vasyl Cherpak6-May-23 8:05 
GeneralIt is not a Multidimensional C++ Array. Pin
armagedescu5-May-20 2:23
armagedescu5-May-20 2:23 
SuggestionMultiple errors in test examples. And a suggestion. Pin
Stefan_Lang5-Jul-19 2:09
Stefan_Lang5-Jul-19 2:09 
QuestionIt works only for integers. What about other native types? Pin
Wym218-Jun-19 8:49
professionalWym218-Jun-19 8:49 
AnswerRe: It works only for integers. What about other native types? Pin
Michael Chourdakis18-Jun-19 10:26
mvaMichael Chourdakis18-Jun-19 10:26 
GeneralRe: It works only for integers. What about other native types? Pin
Wym219-Jun-19 7:52
professionalWym219-Jun-19 7:52 
GeneralRe: It works only for integers. What about other native types? Pin
Michael Chourdakis19-Jun-19 8:09
mvaMichael Chourdakis19-Jun-19 8:09 
GeneralRe: It works only for integers. What about other native types? Pin
Wym219-Jun-19 11:25
professionalWym219-Jun-19 11:25 
GeneralRe: It works only for integers. What about other native types? Pin
Stefan_Lang4-Jul-19 6:30
Stefan_Lang4-Jul-19 6:30 
GeneralRe: It works only for integers. What about other native types? Pin
Stefan_Lang5-Jul-19 1:57
Stefan_Lang5-Jul-19 1:57 
GeneralRe: It works only for integers. What about other native types? Pin
Wym25-Jul-19 6:55
professionalWym25-Jul-19 6:55 
QuestionThere is an error in the example Pin
Member 1418795617-Jun-19 16:52
Member 1418795617-Jun-19 16:52 
AnswerRe: There is an error in the example Pin
Michael Chourdakis17-Jun-19 22:13
mvaMichael Chourdakis17-Jun-19 22:13 
GeneralRe: There is an error in the example Pin
Member 1418795618-Jun-19 2:06
Member 1418795618-Jun-19 2:06 
GeneralRe: There is an error in the example Pin
Stefan_Lang5-Jul-19 1:32
Stefan_Lang5-Jul-19 1:32 
GeneralRe: There is an error in the example Pin
Stefan_Lang5-Jul-19 1:51
Stefan_Lang5-Jul-19 1:51 
QuestionNot obvious way Pin
Сергій Ярошко16-Jun-19 21:25
professionalСергій Ярошко16-Jun-19 21:25 
AnswerRe: Not obvious way Pin
Michael Chourdakis16-Jun-19 23:40
mvaMichael Chourdakis16-Jun-19 23:40 
AnswerRe: Not obvious way Pin
Stefan_Lang8-Jul-19 4:23
Stefan_Lang8-Jul-19 4:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.