- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为此工作了几个小时。我完全被难住了。
这是 CS113 的实验室。
如果用户在程序(二进制计算器)结束时选择继续,我们需要使用 goto 语句来到达程序的顶部。
但是,我们还需要释放所有分配的内存。
这两件事似乎是不相容的。如果我释放分配的内存并且用户选择继续,那么一切都会变得非常疯狂。即使这些值被重新初始化,但在这个过程中也会以某种方式搞砸。我真的很抱歉,但我不知道如何更好地解释。尽管步骤与第一次运行相同,但它们最终似乎充满了垃圾。
我的代码如下。请注意,“释放分配的内存”部分在我的版本中已被注释掉,但我将其留在这里,以免造成混淆。
编辑:现在可以释放CPU。目前的版本可以正常工作。但是,我无法释放我分配的字符串或由双向链表组成的寄存器。我无法使用的免费函数已被注释掉,并在程序的末尾。
注意:如果内存在最后没有释放,程序也绝对可以正常运行,即使多次运行也是如此。请注意这一点。
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include"lab9.h"
#include<math.h>
int main()
{
struct cpu_t *cpu = NULL;
top:
if(cpu)
{
free(cpu);
cpu = NULL;
}
cpu = malloc(sizeof(struct cpu_t));
if(!cpu) /* Error check malloc for CPU */
{
printf("Sorry! Malloc failed to allocate space for the CPU!\n");
exit(EXIT_FAILURE);
}
struct bit_t *temp1 = cpu->r1_head;
struct bit_t *temp2 = cpu->r2_head;
struct bit_t *temp3 = cpu->r3_head;
/* Setting all flags to 0 by default */
cpu->overflow = 0;
cpu->carry = 0;
cpu->sign = 0;
cpu->parity = 0;
cpu->zero = 0;
char buffer[128];
char unsign; /* Holds a char: 0 for signed, 1 for unsigned */
char *expression = NULL; /* Binary expression */
char *e1 = NULL; /* Holds the first part of the expression */
char op; /* Holds the operand */
char *e2 = NULL; /* Holds the second part of the expression */
char ans; /* y if user wants to continue, else ends program */
int temp = 0; /* Used for printing separating dashes */
int one_count = 0; /* Number of ones in the result */
printf("\nPlease enter the word size: ");
fgets(buffer, sizeof(buffer), stdin);
cpu->word_size = atoi(buffer); /* atoi takes a pointer, don't dereference buffer*/
while(cpu->word_size < 1 || cpu->word_size > 64) /* Error check word size */
{
printf("Error: Word size must be between 1 and 64. \n");
printf("Enter a new word size: \n");
fgets(buffer, sizeof(buffer), stdin);
cpu->word_size = atoi(buffer);
}
printf("Are the values unsigned? [Y/N]: ");
unsign = *fgets(buffer, sizeof(buffer), stdin); /* fgets returns address to data, must be dereferenced */
switch(unsign)
{
case 'y':
case 'Y':
cpu->unsign = 1;
break;
case 'n':
case 'N':
cpu->unsign = 0;
break;
}
printf("Please enter the binary expression: ");
expression = fgets(buffer, sizeof(buffer), stdin); /* Stores expression in string */
e1 = strtok(expression, " "); /* Breaks off first number*/
switch(check_string(cpu, e1)) /* Error check first string */
{
case 1:
printf("Error in input: Length of operand greater than word size. \n");
printf("Error in first operand. Retry. \n");
goto top;
case 2:
printf("Error in input: Something other than a 1 or 0 entered. \n");
printf("Error in first operand. Retry. \n");
goto top;
default:
break;
}
e1 = zero_pad(cpu, e1); /* Zero pads first number */
op = *strtok(NULL, " "); /* Operation (+, -, ^, &, |) */
e2 = strtok(NULL, " \n"); /* Original string had \n at end. Otherwise length would be 1 over actual. */
switch(check_string(cpu, e2)) /* Error check second string */
{
case 1:
printf("Error in input: Length of operand greater than word size. \n");
printf("Error in second operand. Retry. \n");
goto top;
case 2:
printf("Error in input: Something other than a 1 or 0 entered. \n");
printf("Error in second operand. Retry. \n");
goto top;
default:
break;
}
e2 = zero_pad(cpu, e2); /* Zero pads second number */
create_r1(cpu, e1);
create_r2(cpu, e2);
create_r3(cpu);
switch(op)
{
case '+':
add_function(cpu);
break;
case '-':
op = '+';
complement(cpu); /* Turns second expression into 2's complement of itself */
add_function(cpu);
break;
case '&':
and_function(cpu);
break;
case '|':
or_function(cpu);
break;
case '^':
xor_function(cpu);
break;
default:
printf("Error in operator. Please retry. \n");
goto top;
}
temp1 = cpu->r1_head;
temp2 = cpu->r2_head;
temp3 = cpu->r3_head;
/* Print the first register */
while(temp1)
{
printf("%d", temp1->n);
temp1 = temp1->next;
}
puts("");
/* Print operator */
printf("%c\n", op);
/* Print second register */
while(temp2)
{
printf("%d", temp2->n);
temp2 = temp2->next;
}
puts("");
/* Print spacing dashes */
while(temp < (cpu->word_size))
{
printf("-");
temp++;
}
puts("");
/* Print third register (stores answer) */
while(temp3)
{
printf("%d", temp3->n);
temp3 = temp3->next;
}
puts("");
/* Flag handling */
/* Reset temp variables */
temp1 = cpu->r1_head;
temp2 = cpu->r2_head;
temp3 = cpu->r3_head;
/* Flag handling */
if(temp3->n == 1)
{
cpu->sign = 1;
}
while(temp3)
{
if(temp3->n == 1)
{
one_count++;
}
temp3 = temp3->next;
}
if(one_count == 0)
{
cpu->zero = 1;
}
else if(one_count % 2 == 0)
{
cpu->parity = 1;
}
printf("Flags: \n");
printf("Overflow: %d \n", cpu->overflow);
printf("Carry: %d \n", cpu->carry);
printf("Sign: %d \n", cpu->sign);
printf("Parity: %d \n", cpu->parity);
printf("Zero: %d \n", cpu->zero);
printf("Decimal: %d \n", find_decimal(cpu));
printf("Do you want to continue? [Y/N] \n"); /* If not 'y' or 'Y', close program */
ans = *fgets(buffer, sizeof(buffer), stdin);
/* Reset temps...again */
temp1 = cpu->r1_head;
temp2 = cpu->r2_head;
temp3 = cpu->r3_head;
/* Free all allocated memory */
//delete_list(cpu->r1_head);
//delete_list(cpu->r2_head);
//delete_list(cpu->r3_head);
/* Free zero_string */
//free(e1);
//free(e2);
if(ans == 'Y' || ans == 'y')
{
temp = 0;
goto top;
}
return 0;
}
最佳答案
也许您可以将 main 的开头更改为如下所示:
int main() {
struct cpu_t *cpu = NULL;
top:
if (cpu) {
free(cpu);
cpu = NULL;
}
cpu = malloc(sizeof(struct cpu_t));
关于无法 malloc 然后转到程序顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33928635/
我正在尝试向图像顶部和底部的 ImageView 添加渐变。我不想在 ImageView 之上添加 TextView 。我该如何实现? 最佳答案 看来您简单而干净的解决方案是用 FrameLayout
我可以寻求帮助吗, 我有日期 - “公司名称”和“日期”,例如 $value |"Comp Name"| "Date" | |:----------|----------:| |computer
我有两个表,我试图从中运行查询以返回每个人的最大(或最高)交易。我应该注意,我无法更改表结构。相反,我只能拉数据。 人 +-----------+| id | name |+-----------+|
所以我有一个用管道打开的 n 个流的数组,但是使用 gdb,我发现当我尝试关闭流或管道的写入端时程序失败。我可以很好地写入管道,但关闭它们不起作用。我在程序上运行 valgrind,它所做的只是打印出
大家好,这是我的难题。我正在尝试创建一个标签栏,该标签栏从上到下锚定在左侧,而不是从左到右锚定在底部。我创建了一个工具栏项目,将栏准确地放置在我想要的位置,但我希望选项卡栏相同,具有相同的功能,当然除
http://jsfiddle.net/GuXQZ/3/ header slideshow lates Content
我的图片出了点问题,我无法解决这个问题。这是我的代码.. HTML HIDE CSS #ads { -webkit-border-bottom-right-r
我有一个包含 3(css 网格)列的设计。第二列有嵌套的网格内容需要垂直滚动,而其他两列保持各自的高度。我给第二个嵌套列一个溢出,但我还需要给它一个顶部和底部填充或边距。我的解决方案没有顶部/底部填充
我在 View 中有两个 UIToolbar,分别在顶部和底部。我正在尝试在 iOS 版本中一致地应用外观。从 iOS5 开始有这个 setBackgroundImage: forToolbarPos
一个 div 我使用 top:-26px; 在 css 中设置高度。我有其他 div 其他地方我想与那个 div 对齐。我注意到在 jquery 中编写 .css('top') 得到了我的 css 而
我有这个无序列表 two three 有没有一种方法可以将无序列表添加到无序列表的前面,使其像这样结束? ONE two three 请注意“ONE”已添加到列表
我想检测鼠标何时离开顶部的视口(viewport)(可以说是向北)。我在网上搜了下How can I detect when the mouse leaves the window? .是一个好的开始
运行顶级命令top -c在 Ubuntu 服务器上显示当前正在运行的所有命令。关于 PostgreSQL 命令,括号中的值是什么意思?我说的是图片中红色框旁边的值。 最佳答案 我找不到任何文档来支持这
我想知道将顶部和底部边距添加到 GtkTextView 的正确且普遍接受的方法位于 GtkScrolledWindow 内.有设置左右边距的功能,我正在使用: gtk_text_view_set_le
作为很多“初学者”,我认为使用 TOP_OF_PIPELINE 作为 dst 和 BOTTOM_OF_PIPELINE 作为 src 意味着 ALL_COMMANDS 两者。 Here Nicol B
我正在尝试使用 jQuery/Javascript 解决这个问题: 当浏览器向下滚动且窗口底部到达页脚 DIV 顶部时,执行 CSS 代码更改。 问题示例: https://elodywedding.
我想使用范围 slider 来选择一个值并将该值呈现在 Angular 中的范围选择器顶部。我的html代码是: Raio: {{raio}} metros 在我的 co
我想将手的图片放在靠近脸部的黑色 Canvas 上。这可以吗?有没有办法确定图片的位置? 这是我的代码: var canvas; var canvasContext; window
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我是一名优秀的程序员,十分优秀!