- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在做一项任务,该任务是 Boggle 游戏的开始。基本前提是我们有一个包含 96 个字符的文本文件,我们的程序将分别读取这些字符并将它们作为节点添加到线性链表中,然后将每个项目复制到另一个线性链表中,该线性链表将放置每个骰子上有 6 个字符,总共 16 个骰子。我的程序现在可以正常工作(部分感谢我在这里收到的反馈),但它在执行结束时崩溃了,我不确定为什么。非常感谢任何指导,因为我的编译器没有给我任何错误。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Struct for data
struct boggleDataNode
{
char data[3];
struct boggleDataNode *nextData;
};
// Struct for die
struct boggleDieSideNode
{
char dieSideData[3];
struct boggleDieSideNode *nextSide;
};
// Function to read the data file "BoggleData.txt"
void read(struct boggleDataNode **head1)
{
char ch[3];
FILE *input;
input = fopen("BoggleData.txt", "r");
if (input == NULL)
{
printf("Cannot open data file.\n");
}
else
{
while(fscanf(input, "%s", ch) != EOF)
{
addBoggleData(head1, ch);
}
}
fclose(input);
return;
}
// Function to add character from file to BoggleData Linked List
void addBoggleData(struct boggleDataNode **head1, char * ch)
{
struct boggleDataNode *temp = NULL;
struct boggleDataNode *right = NULL;
temp = (struct boggleDataNode *)malloc(sizeof(struct boggleDataNode));
strcpy(temp->data, ch);
temp->nextData = NULL;
if (*head1 == NULL)
{
*head1 = temp;
}
else
{
right = *head1;
while(right->nextData != NULL)
{
right = right->nextData;
}
right->nextData = temp;
}
return;
}
// Function to add a node to the linked list that contains the side data for each die
void addBoggleDieSide(struct boggleDataNode *head1, struct boggleDieSideNode **head2, int index)
{
int i = 0;
struct boggleDieSideNode *temp = NULL;
struct boggleDieSideNode *right = NULL;
struct boggleDataNode *helper = NULL;
temp = (struct boggleDieSideNode *)malloc(sizeof(struct boggleDieSideNode));
helper = (struct boggleDataNode *)malloc(sizeof(struct boggleDataNode));
helper = head1;
for(i = 0; i < index; i++)
{
helper = helper->nextData;
}
strcpy(temp->dieSideData, helper->data);
temp->nextSide = NULL;
if (*head2 == NULL)
{
*head2 = temp;
}
else
{
right = *head2;
while(right->nextSide != NULL)
{
right = right->nextSide;
}
right->nextSide = temp;
}
return;
}
// Function to display the nodes of the linked list that contains the data from the data file
void displayDataFile(struct boggleDataNode *head1)
{
int value = 0;
struct boggleDataNode *temp = NULL;
temp = (struct boggleDataNode *)malloc(sizeof(struct boggleDataNode));
temp = head1;
printf("**** Displaying Boggle Data ****\n");
if(temp == NULL)
{
return;
}
else
{
while(temp != NULL)
{
printf("Data value %d : %s\n", value, temp->data);
value++;
temp = temp->nextData;
if(temp == NULL)
{
break;
}
}
}
return;
}
// Function to display the nodes of the linked list that contains the data on the six sides of the die
void displayDieSide(struct boggleDieSideNode *head2)
{
int value = 0;
struct boggleDieSideNode *temp = NULL;
temp = (struct boggleDieSideNode *)malloc(sizeof(struct boggleDieSideNode));
temp = head2;
if(temp == NULL)
{
return;
}
else
{
while(temp != NULL)
{
printf("Side %d : %s\n", value, temp->dieSideData);
value++;
temp = temp->nextSide;
if(temp == NULL)
{
break;
}
}
}
return;
}
// Main function
int main()
{
int counter = 0;
int i = 0;
struct boggleDataNode *head1 = NULL;
struct boggleDieSideNode *head2 = NULL;
read(&head1);
displayDataFile(head1);
for(i = 0; i < 16; i++)
{
head2 = NULL;
for(i = 0; i < 6; i++)
{
addBoggleDieSide(head1, &head2, counter);
counter++;
}
printf("\n");
printf("**** Displaying Die Side Data ****\n");
displayDieSide(head2);
}
return 0;
}
最佳答案
呃。当你看到主要错误时,你就会自杀。
for(i = 0; i < 16; i++)
{
head2 = NULL;
for(i = 0; i < 6; i++)
{
addBoggleDieSide(head1, &head2, counter);
counter++;
}
printf("\n");
printf("**** Displaying Die Side Data ****\n");
displayDieSide(head2);
}
两个循环中的i
发生了什么?让它看起来像:
for(i = 0; i < 16; i++)
{
head2 = NULL;
for(j = 0; j < 6; j++)
{
addBoggleDieSide(head1, &head2, counter);
counter++;
}
printf("\n");
printf("**** Displaying Die Side Data ****\n");
displayDieSide(head2);
}
这只是你问题的一部分。其余的都是你可以做出的改进。最重要的是不要转换 malloc 的结果。其余部分是:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Struct for data
struct boggleDataNode
{
char data[3];
struct boggleDataNode *nextData;
};
// Struct for die
struct boggleDieSideNode
{
char dieSideData[3];
struct boggleDieSideNode *nextSide;
};
// Function to add character from file to BoggleData Linked List
void addBoggleData(struct boggleDataNode **head1, char * ch)
{
struct boggleDataNode *temp = NULL;
struct boggleDataNode *right = NULL;
temp = malloc (sizeof *temp);
strcpy(temp->data, ch);
temp->nextData = NULL;
if (*head1 == NULL)
{
*head1 = temp;
}
else
{
right = *head1;
while(right->nextData != NULL)
{
right = right->nextData;
}
right->nextData = temp;
}
return;
}
// Function to read the data file "BoggleData.txt"
void read(struct boggleDataNode **head1)
{
char ch[3];
FILE *input;
input = fopen("BoggleData.txt", "r");
if (input == NULL)
{
printf("Cannot open data file.\n");
}
else
{
while(fscanf(input, "%2[^\n]%*c", ch) != EOF)
{
addBoggleData(head1, ch);
}
}
fclose(input);
return;
}
// Function to add a node to the linked list that contains the side data for each die
void addBoggleDieSide(struct boggleDataNode *head1, struct boggleDieSideNode **head2, int index)
{
int i = 0;
struct boggleDieSideNode *temp = NULL;
struct boggleDieSideNode *right = NULL;
struct boggleDataNode *helper = NULL;
temp = malloc(sizeof *temp);
// helper = malloc(sizeof *helper);
helper = head1;
for(i = 0; i < index; i++)
{
helper = helper->nextData;
}
strcpy (temp->dieSideData, helper->data);
temp->nextSide = NULL;
if (*head2 == NULL)
{
*head2 = temp;
}
else
{
right = *head2;
while(right->nextSide != NULL)
{
right = right->nextSide;
}
right->nextSide = temp;
}
return;
}
// Function to display the nodes of the linked list that contains the data from the data file
void displayDataFile(struct boggleDataNode *head1)
{
int value = 0;
struct boggleDataNode *temp = NULL;
// temp = malloc(sizeof *temp);
temp = head1;
printf("**** Displaying Boggle Data ****\n");
if(temp == NULL)
{
return;
}
else
{
while(temp != NULL)
{
printf("Data value %d : %s\n", value, temp->data);
value++;
temp = temp->nextData;
/*
if(temp == NULL)
{
break;
}*/
}
}
return;
}
// Function to display the nodes of the linked list that contains the data on the six sides of the die
void displayDieSide(struct boggleDieSideNode *head2)
{
int value = 0;
struct boggleDieSideNode *temp = NULL;
// temp = malloc (sizeof *temp);
temp = head2;
if(temp == NULL)
{
return;
}
else
{
while(temp != NULL)
{
printf("Side %d : %s\n", value, temp->dieSideData);
value++;
temp = temp->nextSide;
// if(temp == NULL)
// {
// break;
// }
}
}
return;
}
// Main function
int main()
{
int counter = 0;
int i = 0, j = 0;
struct boggleDataNode *head1 = NULL;
struct boggleDieSideNode *head2 = NULL;
read(&head1);
displayDataFile(head1);
for(i = 0; i < 16; i++)
{
head2 = NULL;
for(j = 0; j < 6; j++)
{
addBoggleDieSide(head1, &head2, counter);
counter++;
}
printf("\n");
printf("**** Displaying Die Side Data ****\n");
displayDieSide(head2);
}
return 0;
}
输出
$ ./bin/lldicecrash
**** Displaying Boggle Data ****
Data value 0 : 1
Data value 1 : 5
Data value 2 : 4
Data value 3 : 2
Data value 4 : 1
Data value 5 : 6
Data value 6 : 2
<snip>
Data value 94 : 2
Data value 95 : 5
**** Displaying Die Side Data ****
Side 0 : 1
Side 1 : 5
Side 2 : 4
Side 3 : 2
Side 4 : 1
Side 5 : 6
**** Displaying Die Side Data ****
Side 0 : 2
Side 1 : 1
Side 2 : 2
Side 3 : 5
Side 4 : 3
Side 5 : 5
<snip 13 more die>
**** Displaying Die Side Data ****
Side 0 : 5
Side 1 : 3
Side 2 : 4
Side 3 : 5
Side 4 : 2
Side 5 : 5
注意:您确实应该将 ch
作为字符而不是字符串来读取(并将其作为结构中和整个代码中的字符处理)。这会让事情变得简单一些。然而,这取决于你。 (分配可能需要它)要读取字符串,您应该改进 fscanf
转换说明符。看看我所做的更改。
另请注意:我不知道您的实际数据值是多少。我只是创建了一个可用的数据文件:
$ for i in {1..96}; do echo $((RANDOM % 6 + 1)) >> BoggleData.txt; done
关于带有链接列表的 C 程序最后崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31085600/
这个问题在这里已经有了答案: “return” and “try-catch-finally” block evaluation in scala (2 个回答) 7年前关闭。 为什么method1返
我有一个动态列表,需要选择最后一项之前的项目。 drag your favorites here var lastLiId = $(".album
我想为每个线程执行特定操作,因此,我认为tearDown Thread Group 不起作用。 是否有任何替代方法可以仅在线程的最后一次迭代时运行“仅一次 Controller ”? 谢谢。 最佳答案
在我的书中它使用了这样的东西: for($ARGV[0]) { Expression && do { print "..."; last; }; ... } for 循环不完整吗?另外,do 的意义何
我想为每个线程执行特定操作,因此,我认为tearDown Thread Group 不起作用。 是否有任何替代方法可以仅在线程的最后一次迭代时运行“仅一次 Controller ”? 谢谢。 最佳答案
有没有可能 finally 不会被调用但应用程序仍在运行? 我在那里释放信号量 finally { _semParallelUpdates.Re
我收藏了 对齐的元素,以便它们形成两列。使用 nth-last-child 的组合和 nth-child(even) - 或任何其他选择器 - 是否可以将样式应用于以下两者之一:a)最后两个(假设
我正在阅读 Jon Skeet 的 C# in Depth . 在第 156 页,他有一个示例, list 5.13“使用多个委托(delegate)捕获多个变量实例化”。 List list = n
我在 AM4:AM1000 范围内有一个数据列表(从上到下有间隙),它总是被添加到其中,我想在其中查找和总结最后 4 个结果。但我只想找到与单独列相对应的结果,范围 AL4:AL1000 等于单元格
我最近编写了一个运行良好的 PowerShell 脚本 - 然而,我现在想升级该脚本并添加一些错误检查/处理 - 但我似乎被第一个障碍难住了。为什么下面的代码不起作用? try { Remove-
这个问题在这里已经有了答案: Why does "a == x or y or z" always evaluate to True? How can I compare "a" to all of
使用 Django 中这样的模型,如何检索 30 天的条目并计算当天添加的条目数。 class Entry(models.Model): ... entered = models.Da
我有以下代码。 public static void main(String[] args) { // TODO Auto-generated method stub
这个问题在这里已经有了答案: Why does "a == x or y or z" always evaluate to True? How can I compare "a" to all of
这个问题已经有答案了: Multiple returns: Which one sets the final return value? (7 个回答) 已关闭 8 年前。 我正在经历几个在工作面试中
$ cat n2.txt apn,date 3704-156,11/04/2019 3704-156,11/22/2019 5515-004,10/23/2019 3732-231,10/07/201
我可以在 C/C++ 中设置/禁用普通数组最后几个元素的读(或写)访问权限吗?由于我无法使用其他进程的内存,我怀疑这是可能的,但如何实现呢?我用谷歌搜索但找不到。 如果可以,怎样做? 因为我想尝试这样
我想使用在这里找到的虚拟键盘组件 http://www.codeproject.com/KB/miscctrl/touchscreenkeyboard.aspx就像 Windows 中的屏幕键盘 (O
我正在运行一个 while 循环来获取每个对话的最新消息,但是我收到了错误 [18-Feb-2012 21:14:59] PHP Warning: mysql_fetch_array(): supp
这个问题在这里已经有了答案: How to get the last day of the month? (44 个答案) 关闭 8 年前。 这是我在这里的第一篇文章,所以如果我做错了请告诉我...
我是一名优秀的程序员,十分优秀!