Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,950 questions

51,892 answers

573 users

How to convert a 1D coordinate into 2D indexes in C++

1 Answer

0 votes
#include <iostream>

int main(void)
{
    int array2d[4][5] = { { 1,   2,   3,   6,  0},
                          {-5,  -4,   0,   7,  9},
                          { 1,  18, 100,  14,  6},
                          { 9,  10,  27,  12, 13} };
  
    int array1d[] = { 1, 2, 3, 6, 0, -5, -4, 0, 7, 9, 1, 18, 100, 14, 6, 9, 10, 27, 12, 13 };
          
    int rows = (sizeof(array2d) / sizeof(array2d[0]));
    int cols = (sizeof(array2d) / sizeof(array2d[0][0])) / rows;
  
    int index = 17;
         
    // int i = 3, j = 2;
         
    int i = index / cols;
    int j = index - (i * cols); // index % cols;
 
    std::cout << "i = " << i << " j = " <<  j << "\n";
         
    std::cout << array1d[index] << "\n";  
    std::cout << array2d[i][j];   
}
  
 
  
/*
run:
  
i = 3 j = 2
27
27
 
*/

 

 



answered Sep 18, 2023 by avibootz

Related questions

1 answer 142 views
1 answer 141 views
1 answer 115 views
1 answer 161 views
1 answer 141 views
1 answer 123 views
1 answer 136 views
...