- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试用 C 语言编写康威生命游戏的代码。我对包含我的宇宙的 2D 数组有一些问题。我将向您展示导致我出现问题的部分代码。实际上有两个问题我无法处理。
#include <stdio.h>
#include <stdlib.h>
#include "file2ppm.h"
typedef enum { false, true } bool;
void *allocateMemoryFor2DArray(int x, int y); //allocate memory for 2D array
void initializeUniverseFromFile(char* path, int x, int y, int array[x][y]); //set values of cells from a file
void initializeUniverseRandomly(int x, int y, int array[x][y]); //set random values
int getNumberOfColumns (FILE *file); //get number of columns in file (yDim of Universe)
int getNumberOfLines (FILE *file); //get number of lines in file (xDim of Universe)
void print2DArray (int x, int y, int array[x][y]); //print 2D array
void setDimensionsFromFile(char* path,int* xDim, int* yDim, int* xDimB, int* yDimB);//set dimensions of Universe
int main(int argc, char * argv[])
{
int i, j, n; //loop indexes
int nsteps; //Number of generations
int im, ip, jm, jp; //neighbour boundaries
int yDim, xDim; //Universe boundarier defined by user (Living area);
int xDimB, yDimB; //Universe boundaries expanded to each side by 1
int nsum, isum; //sum of neighbours, sum of alive cells after iteration
//int **old, **new; //Universe
int (*old)[xDimB]; //Universe
int (*new)[xDimB]; //Universe
float x; //to randomize first population
char *inputPath; //Path to file with ixDimBtial uxDimBverse
char *outputPath; //Path to output ppm files
//temporary copy
int yDim_copy, xDim_copy;
printf("argc: %d\n", argc);
switch (argc){
case 4: //Read the initial Universe from file
//Take arguments
nsteps = atoi(argv[1]); //Get number of iterations
outputPath = argv[2]; //Get path for outputimages
inputPath = argv[3]; //File with initialize uxDimBverse;
setDimensionsFromFile(inputPath, &xDim, &yDim, &xDimB, &yDimB);
old = allocateMemoryFor2DArray(xDimB, yDimB); //Alocate memory for expanded Universes
new = allocateMemoryFor2DArray(xDimB, yDimB);
printf("Before initialize: yDim: %d, xDim: %d\n", yDim, xDim); //Here the values are good
//tmp copy
yDim_copy = yDim;
xDim_copy = xDim;
initializeUniverseFromFile(inputPath, xDim, yDim, old);
printf("After initialize: yDim: %d, xDim: %d\n", yDim, xDim); //And here one dim is changed
yDim = yDim_copy; //I took a copy to avoid this problem for now
xDim = xDim_copy;
printf("After taking from copy: yDim: %d, xDim: %d\n", yDim, xDim);//Here dimensions are good again
memcpy (new, old, xDimB*yDimB*sizeof(old[xDimB][yDimB])); //Copy old to new
break;
default:
printf("Usage: %s iter_number, output_name, yDim, xDim\n", argv[0]);
printf("or\n");
printf("Usage: %s iter_number, output_name, ixDimBtial_input_name\n", argv[0]);
printf("Note: Initial file have to be in ./data/\n");
return 1;
}
print2DArray(xDim, yDim, old); //this works fine
printf("In main: yDim: %d, xDim: %d\n", yDim, xDim);
printf("%d\n", old[0][0]); //this works fine
printf("%d\n", old[2][2]); //Segmentation failure
return 0;
}
void *allocateMemoryFor2DArray(int x, int y){
int (*array)[y] = malloc( sizeof(int[x][y]) ); //Allocate memory
if (array == NULL) { /* always check the return of malloc */
perror("malloc");
exit(EXIT_FAILURE);
}
return array;
}
int getNumberOfColumns (FILE *file){
int yDim = 0;
char ch;
do
{
ch = getc(file); //Get 1 char from file
if (ch == '\n') //If ch is new line
{
rewind(file); //Move file pointer to beginxDimBng of file
return yDim; //Found number of columns
}
else
++yDim;
}while (ch != EOF);
}
int getNumberOfLines (FILE *file){
int xDim = 0;
char ch;
do
{
ch = getc(file); //Get 1 char from file
if(ch == '\n') //If new line
{
++xDim; //Increase xDim (another row)
}
}while(ch != EOF);
rewind(file); //Move file pointer to beginxDimBng of file
return xDim;
}
void print2DArray (int x, int y, int array[x][y])
{
int i, j;
printf("x: %d, y: %d\n", x, y);
for (i = 1; i <= x; ++i)
{
for (j = 1; j <= y; ++j)
{
printf("%d ", array[i][j]);
}
printf("\n");
}
}
void setDimensionsFromFile(char* path, int* xDim, int* yDim, int* xDimB, int* yDimB)
{
FILE *file;
int i,j;
file = fopen(path, "r"); //open file
if (file)
{
*yDim = getNumberOfColumns (file);
*xDim = getNumberOfLines (file);
*xDimB = *xDim + 2; // add 2 for left and right torus topology
*yDimB = *yDim + 2;
if (*xDim > 0 && *yDim > 0)
{
printf("UxDimBverse dimension %d x %d\n", *xDim , *yDim);
}
else
{
perror("Wrong initialize file");
exit(EXIT_FAILURE);
}
fclose(file); //Close file
}
else
{
perror("Open initialize file error");
exit(EXIT_FAILURE);
}
}
void initializeUniverseFromFile(char* path, int x, int y, int array[x][y])
{
FILE *file;
int i,j;
file = fopen(path, "r"); //open file
if (file)
{
//IxDimBtialize array
char *ch;
for (i = 1; i <= x; i++)
{
//printf("i: %d ", i);
for (j = 1; j <= y; j++)
{
//printf("j: %d ", j);
if (fscanf(file, "%c", ch) != 1)
{
perror("Read error\n");
}
else if (isdigit((unsigned char)*ch))
{
printf("%d", atoi(ch));
array[i][j] = atoi(ch);
}
else
{
//printf("Numer znaku: %d ", ch);
j--;
}
}
printf("\n");
}
printf("Done reading\n");
fclose(file); //Close file
}
else
{ //File open error
perror("Open initialize file error");
exit (EXIT_FAILURE);
}
printf("In initialize yDim: %d, xDim: %d\n", x, y);
}
void initializeUniverseRandomly(int x, int y, int array[x][y])
{
int i, j;
float r;
for (i = 1; i <= x; i++) {
for (j = 1; j <= y; j++) {
r = rand() / ((float)RAND_MAX + 1);
if (r<0.5) {
array[i][j] = i*x+j;
}
else {
array[i][j] = i*x+j;
}
}
}
}
问题1:我设置了宇宙的维度(变量 xDim 和 yDim)。我在第 45 行打印它们(检查注释//Here the value are good)。然后我调用 initializeUniverseFromFile(inputPath, xDim, yDim, old);
并且其中一个尺寸值发生变化。我不知道为什么。这就是为什么我临时复制这个变量,因为我花了 2 个小时寻找那个错误。我什至在 initializeUniverseFromFile
函数的末尾打印出这些变量,它们都很好。但是当我再次回到 main 时(第 50 行),该值发生了变化。这是小问题。更糟糕的是:
问题2我有一个指针 int (*old)[xDimB];
xDimB 是 xDim+2,因此它始终大于 xDim
我用函数初始化数组为2DArray分配内存(xDimB, yDimB)
然后我这样做:
print2DArray(xDim, yDim, old); //this works fine
printf("In main: yDim: %d, xDim: %d\n", yDim, xDim); //Dimensions are fine
printf("%d\n", old[0][0]); //this works fine
for (i=0; i<=xDim; ++i)
printf("%d ", old[0][i]; //this works fine too
printf("%d\n", old[2][2]); //Segmentation failure
用函数打印整个数组就可以了第一行的打印值很好从数组中间打印值创建错误。
最佳答案
I set the dimensions of universe (variables xDim and yDim)
在声明 VLA int (*old)[xDimB];
和 int (*new)[xDimB] 之前,您需要这些包含有效数字。 ;
。当 xDim 和 yDim 具有已知的、经过验证的值时,将这些 VLA 声明移至程序的后面一点。
关于c - C 中的 2D 数组指针访问段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36782015/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!