为什么循环的顺序会影响2D数组的迭代性能?
i
j
#include <stdio.h>#include <stdlib.h>main () { int i,j; static int x[4000][4000]; for (i = 0; i < 4000; i++) { for (j = 0; j < 4000; j++) { x[j][i] = i + j; } }}
#include <stdio.h>#include <stdlib.h>main () { int i,j; static int x[4000][4000]; for (j = 0; j < 4000; j++) { for (i = 0; i < 4000; i++) { x[j][i] = i + j; } }}
慕沐林林
慕盖茨4494581
相关分类