码迷,mamicode.com
首页 > 编程语言 > 详细

二维数组_一维数组

时间:2016-10-05 17:26:48      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

二维数组在内存中占据连续的空间。在内存中从上到下存储各行元素,在同一行中按照从左到右的顺序存储。

因此可以根据行号和列号计算出相对于数组首地址的偏移量,从而找到对应元素。

eg.      int *matrix    rows行columns列   matrix[ row * columns + column]

二维数组转化为一位数组:

#include <iostream>

using namespace std;

void display(int* matrix)
{
  cout << matrix[4] << endl;    //代表二维数组a的第二行,第一个元素
}

int main()
{
    int a[2][3];
    for(int i = 1; i <= 2; ++i)
        for(int j = 1; j <= 3; ++j)
        {
            a[i-1][j-1] = i+j;
            cout << a[i-1][j-1] << " ";
            if(j % 3 == 0)
                cout << endl;
        }
    display(a[0]);     //将二维数组第一行的首地址(即二维数组首地址)传入

    cout << "Hello World!" << endl;
    return 0;
}

 

二维数组_一维数组

标签:

原文地址:http://www.cnblogs.com/Lunais/p/5932382.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!