双指针实现二维数组实现

时间:2012-12-20 14:11:11

标签: c multidimensional-array double-pointer

请考虑以下代码:

#include <stdio.h>
#include <stdlib.h>

#define NUM_ARRAYS     4
#define NUM_ELEMENTS   4
#define INVALID_VAL   -1

int main()
{
   int index            = INVALID_VAL;
   int array_index      = INVALID_VAL;
   int **ptr            = NULL;

   ptr = malloc(sizeof(int*)*NUM_ARRAYS);

   if (!ptr)
   {
      printf ("\nMemory Allocation Failure !\n\n");
      exit (EXIT_FAILURE);
   }

   for (index=0; index<NUM_ARRAYS; index++)
   {
      *(ptr+index) = malloc(sizeof(int)*NUM_ELEMENTS); 

      if (!*(ptr+index))
      {
         printf ("\nMemory Allocation Failure !\n");
         exit (EXIT_FAILURE);
      }
   }

   /* Fill Elements Into This 2-D Array */
   for (index=0; index<NUM_ARRAYS; index++)
   {
      for (array_index = 0; array_index<NUM_ELEMENTS; array_index++)
      {
         *(*(ptr+index)+array_index) = (array_index+1)*(index+1);
      }
   }

   /* Print Array Elements */
   for (index = 0; index<NUM_ARRAYS; index++)
   {
      printf ("\nArray %d Elements:\n", index);
      for (array_index = 0; array_index<NUM_ELEMENTS; array_index++)
      {
         printf (" %d ", *(*(ptr+index)+array_index));
      }
      printf ("\n\n");
   }

   return 0;
}

我的代码没有问题。它工作正常。

Output:

Array 0 Elements:
 1  2  3  4 


Array 1 Elements:
 2  4  6  8 


Array 2 Elements:
 3  6  9  12 


Array 3 Elements:
 4  8  12  16 

我对指针算法有疑问:

*(ptr+0) =指向完成块的指针(第一个数组)
*(ptr+1) =指向COMPLETE BLOCK(第二个数组)的指针。

但是:(*ptr+1)

GDB输出:

(gdb) p *(*ptr+1)
$1 = 2
(gdb) p *(*ptr+2)
$2 = 3
(gdb) p *(*ptr+3)
$3 = 4
(gdb) p *(*ptr+4)
$4 = 0

我对此感到困惑。请给我一些解释来解决这个疑问。

5 个答案:

答案 0 :(得分:25)

                                 (*ptr)      (*ptr+1)     (*ptr+2)
                                   |            |            |
             __________      ______v____________v____________v____________
  ptr------>|   *ptr   |--->|  *(*ptr)   |  *(*ptr+1)  |*(*ptr+2) |       |
            |__________|    |____________|_____________|__________|_______|
 (ptr+1)--->| *(ptr+1) |     ____________ _____________ __________________
            |__________|--->|*(*(ptr+1)) |*(*(ptr+1)+1)|          |       |
            |          |    |____________|_____________|__________|_______|
            |__________|          ^             ^
                                  |             |
                              *(ptr+1)     *(ptr+1)+1

带有双指针的2D数组意味着您有一个主数组,而主数组的元素是指向子数组的指针(或地址)。如上图所示

所以如果你已经将双指针定义为这个2D数组的指针,那就说int **ptr

所以ptr正在构建主数组,它将包含指向子数组的指针。 ptr正在构建主数组,这意味着ptr指向主数组的第一个元素,因此ptr + 1指向主数组的第二个元素。

*ptr这意味着ptr指向的第一个元素的内容。它是指向子阵列的指针。所以*ptr是指向第一个子阵列的指针(子阵列是int的数组)。所以*ptr指向第一个子阵列中的第一个元素。所以*ptr + 1是指向第一个子阵列

中第二个元素的指针

答案 1 :(得分:9)

*(ptr+i)等于ptr[i]*(ptr+1)ptr[1]

你可以认为,二维数组是数组的数组。

  • ptr指向完成二维数组,因此ptr+1指向下一个二维数组。

下图ptr为2-D,列数为3

Kerrek SB先生的原始人物,here,你也应该检查一下!

+===============================+==============================+====
|+---------+----------+--------+|+----------+---------+--------+|
||ptr[0,0] | ptr[0,1] | ptr[0,2]|||ptr[1,0] |ptr[1,1] | ptr[1,2]|| ...
|+---------+----------+--------+++----------+---------+--------++ ...
|            ptr[0]             |           ptr[1]              |
+===============================+===============================+====
   ptr

*(*ptr+1) = *( ptr[0] + 1 ) = ptr[0][1]

了解以下内容:

ptr指向完成2-D。

第一行是

*ptr = *(ptr + 0) = ptr[0]

*ptr + 1 = ptr[1]表示第二行

*(*ptr+1) = *(*(ptr + 0) + 1 ) = *(ptr[0] + 1) = ptr[0][1]

Array 0 Elements:
1  2  3  4 

和GDB输出:

(gdb) p *(*ptr+1)
$1 = 2  

这是正确的2这可以使用ptr[0][1]来阅读。

答案 2 :(得分:3)

使用指针创建二维数组,分配值和访问数组中元素的最简单方法。

#include<stdio.h>
#include<stdlib.h>

int main()
{
int i,j;
int row,col;
printf("Enter the values for row and col:\n");
scanf("%d%d",&row,&col);
int **arr=(int**)malloc(row*(sizeof(int*)));
for(i=0;i<row;i++)
{
    *(arr+i)=(int*)malloc(sizeof(int)*col);
            //You can use this also. Meaning of both is same.
            //arr[i]=(int*)malloc(sizeof(int)*col);
}
for(i=0;i<row;i++)
for(j=0;j<col;j++)
{
    arr[i][j]=0;
}
for(i=0;i<row;i++)
{
    for(j=0;j<col;j++)
    {
        printf("%d ",arr[i][j]);
    }
    printf("\n");
}
}

答案 3 :(得分:2)

除非您输入错误,否则(*ptr + 1)等同于*(ptr + 0) + 1,它是指向第一个块中第二个元素的指针。

答案 4 :(得分:1)

*ptr + 1ptr[0][1]的地址

因为我们知道

ptr[0][1] == *(*(ptr+0)+1)

现在将“&”号放在两边

&ptr[0][1] == &*(*(ptr+0)+1)

您知道带星号的&符就像带减号的加号吗?他们被取消了。这样就变成了

&ptr[0][1] == (*(ptr+0)+1)

相同
&ptr[0][1] == *(ptr+0)+1

再次与

相同
&ptr[0][1] == *ptr+1

这是我的第一句话。