2D阵列与阵列之间的区别是什么?
我阅读了似乎区分两种意见的评论:
int** arr = ...; cout << arr[i][j];
如果他使用2个阵列,或点对称型,而不是一系列阵列——@Dave
2D阵列与阵列之间的区别是什么?
我阅读了似乎区分两种意见的评论:
int** arr = ...; cout << arr[i][j];
如果他使用2个阵列,或点对称型,而不是一系列阵列——@Dave
2个层面阵列is,按定义分为一系列阵列。
What Dave was saying is that in that context, there are different semantics between the definition of a 2D array like 因此:
int x[][];
因此:
int *x[];
or 因此:
int **x;
这里有四个不同的概念。
int arr[][]
. It cannot be resized in any direction, and is contiguous. Indexing it is the same as ((int*)arr)[y*w + x]
. Must be allocated statically.int (*arr)[]
. It can be resized only to add more rows, and is contiguous. Indexing it is the same as ((int*)arr)[y*w + x]
. Must be allocated dynamically, but can be freed free(x)
;int **arr
. It can be resized in any direction, and isn t necessarily square. Usually allocated dynamically, not necessarily contiguous, and freeing is dependent on its construction. Indexing is the same as *(*(arr+y)+x)
. int *arr[]
. It can be resized only to add more columns, and isn t necessarily square. Resizing and freeing also depends on construction. Indexing is the same as *(*(arr+y)+x)
. 每一条均可使用<代码>arr[y][x],造成混乱。
这里的答案略为微妙。
界定了一系列阵列:
int array2[][];
点对线类型的定义是:
int (*array2)[];
点数类型的定义是:
int* array2[];
汇编者对这两种方法的处理差别不大,实际上还有一种选择:
int** array2;
许多人被教授说,这三人是相同的,但如果你们更多地了解汇编者,你肯定会知道,差异很小,但确实存在。 如果你替代另一个方案,那么许多方案将运作起来,但是,在汇编者和阿盟一级,东西都是东塔。 汇编者手册应当提供更深入的答案。
此外,如果有人对2D阵列的实施感兴趣,则根据情况,有多种方法在效率上有所不同。 你们可以把2D阵列图成1D阵列,确保在处理线性数据时保持距离。 如果你想要方便方案规划,如果你需要单独操纵浏览/栏目,你可以使用阵列。 某些被阻塞的类型和其他胎图是切除的,但是如果用户是的话,你很少需要知道。
我希望!
下面是可称为阵列的2D阵列:
int AoA[10][10];
下面是作为2D阵列运作的协调人:
int **P2P = malloc(10 * sizeof *P2P);
if(!P2P) exit(1);
for(size_t i = 0; i < 10; i++)
{
P2P[i] = malloc(10 * sizeof **P2P);
if(!P2P[i])
{
for(; i > 0; i--)
free(P2P[i - 1]);
free(P2P);
}
}
两者均可通过<代码>AoA[x][y]或P2P[x][y]
获取,但两者互不相容。 具体来说,<代码>P2P = AoA 是新bies有时预期会奏效的,但不会——<代码>P2P预期指点人,但当代码int (*)[10]
,而不是<编码>/<<<<>>>>>>>>>>>
2个阵列可以包括:
int x[width * height]; // access: x[x + y * width];
来自Wikipedia:
For a two-dimensional array, the element with indices i,j would have address B + c · i + d · j, where the coefficients c and d are the row and column address increments, respectively.
I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...
I have been searching for sample code creating iterator for my own container, but I haven t really found a good example. I know this been asked before (Creating my own Iterators) but didn t see any ...
Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...
I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?
Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...
Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...
I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...
Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?