- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在我的 C 编程类(class)的最后一个项目中,我们正在实现一个反向波兰符号计算器,它可以评估表达式的正确性,返回相应的中缀表达式,或打印出模拟汇编代码。为此,我们将同时实现堆栈和抽象语法树。
struct snode /*stack data structure */
{
int datum;
struct snode* bottom;
};
struct tnode /*tree data structure */
{
int datum;
struct tnode* left;
struct tnode* right;
};
目前,我将我的程序设计为从 stdin 读取并将元素放入堆栈,然后使用该堆栈创建抽象语法树,稍后可用于计算表达式。目前,我还没有进行任何检查,我只是想先构建一个 AST。
以下是我的主要功能的大部分。目前,没有检查来确保给定的等式是正确的。
int i = 1;
struct snode *stack;
stack = push(stack, -999); /* Here I set what will be the "empty" value of my stack. There's better ways to do it, but this is how I did it for a previous lab and it tended to cause less issues for me when I check if my stack is empty at the end */
struct tnode *AST;
AST = (struct tnode*)malloc(sizeof(struct tnode));
AST->datum = -7062; /*same thing as with stack, this is just a place holder that will be over written. */
AST->right = NULL;
AST -> left = NULL;
struct tnode* tmp;
tmp = (struct tnode*)malloc(sizeof(struct tnode));
tmp -> datum = -7062;
tmp -> right = NULL;
tmp -> left = NULL;
/*Operators are given as letters instead of +,-, etc. */
char *addition = "A"
char *subtraction = "S";
char *multiplication = "X";
char *division = "D"
char *mod = "M";
while(argv[i] !=NULL){
if(isdigit(unsignedchar)argv[i][0])){
stack = push(stack, atol(argv[i]));
}else{ /* In the final code, a strcmp will check to see if argv[i] is one of the above A,S,X,D, or M arguments. For right now, it just fires if it's not a digit for my testing. */
if(AST->datum == -7062){ /*if this is the first time we're running it*/
AST->datum = atol(argv[i]);
AST->right = create_node(stack->datum);
stack = pop(stack);
AST -> left = create_node(stack->datum);
stack = pop(stack); /* I pop the top off the stack twice to get the 2 integers it stores. I know it will for the current testing, checks will be in place later */
}else{ /* if AST already has elements in it. */
tmp = AST;
tmp -> left = tmp-> right = NULL;
AST->datum = atol(argv[i]);
AST->right = create_node(stack->datum);
stack = pop(stack);
AST->left = tmp; /*This puts the new operator as the root of the tree, the old tree as the left child of that root, and the right child as the integer stored on stack.*/
}
}
i++;
}
print_table(AST); /*Should print the AST */
}
create_node 分配空间并存储提供给它的内容。
struct tnode*
create_node(int x){
struct tnode* tmp;
tmp = (struct tnode*)malloc(sizeof(struct tnode))
tmp->datum = x;
tmp->right = NULL;
tmp->left = NULL;
return tmp;
}
print_table 递归地打印抽象语法树。
void
print_table(struct tnode *AST){
if(AST !=NULL){
print_table(AST->left);
printf("%d ", AST->datum);
print_table(AST->right);
}
}
目前,如果给出以下内容:/rpcalc 5 4 A然后程序将返回 5 0 4。我明白为什么 A 返回 0,所以这部分按预期工作。但是,当我尝试给程序/rpcalc 5 4 A 3 X,即 (5+4)*3 时,它会卡住片刻,然后返回一个 Segmentation Fault。
使用多个 printf 语句,我将问题归结为 print_table 函数中的递归。由于某种原因,AST->left 似乎没有到达 NULL 指针终止程序,导致它无限运行,直到程序崩溃。我不确定是什么原因造成的,不幸的是,在我修复它之前,我无法真正继续我的项目......
最佳答案
让我们从中间开始:
}else{ /* if AST already has elements in it. */
tmp = AST;
tmp -> left = tmp-> right = NULL;
AST->datum = atol(argv[i]);
AST->right = create_node(stack->datum);
stack = pop(stack);
AST->left = tmp; /*This puts the new operator as the root of the tree, the old tree as the left child of that root, and the right child as the integer stored on stack.*/
}
}
i++;
}
这很糟糕。您设置 tmp = AST
,然后将 tmp->left
和 tmp->right
设置为 NULL
,但是 < em>还 将AST->left
和AST->right
设置为NULL
,因为它们指向同一事物!稍后,您设置 AST->left = tmp
,这会创建一个循环,因为 AST
和 tmp
再次指向同一事物,所以它等同于 AST->left = AST
。因此,递归到 AST->left
是无限下降,也就是 堆栈溢出。
关于c - 打印抽象语法树,无限递归问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30008377/
我有 3 个列表项,每 3 秒向上旋转一次。我正在使用 transformY 属性来做这件事。问题是,当它到达最后一个元素时,它会循环返回,从而产生重新开始的效果。 如何通过在最后一项之后继续向上旋转
我如何制作一个处理旋转的无限/重复世界,就像在这个游戏中一样: http://bloodfromastone.co.uk/retaliation.html 我通过具有这样的层次结构对我的旋转移动世界进
这个问题已经有答案了: Using explicitly numbered repetition instead of question mark, star and plus (4 个回答) 已关闭
程序说明: I have this program of mine which is intended to read every word from a file (large one) and t
while 循环应该比较这两个对象的 ibsn。正在比较的对象: list[0] = new ReadingMatter ("Words and Stuff", "9-082-1090-1");
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我完全被屏蔽了。我尝试修改 C 中的“警报”信号,以便在秒数到期时读取一个简单的变量。我的代码如下: 在主要部分: int semnal; signal(SIGALRM, alarmHandle
我正在接受多行信息(字符串,直到我稍后解析它们)。例如: 1 5 0 2 9 6 2 9 1 我编写这段代码来分隔行,因为我将不得不以某种方式操作每一行。 Scanner scan = new Sca
我不熟悉 jQuery,并且我有多余的 jQuery 调用,我想将它们放入循环中。 $('.class1').on('click', function () { ... $('.class2').on
我有一个树结构,其中每个节点都有 5 个子节点,并且不允许超过 5 个。我希望以广度优先搜索的方式遍历这棵树。 现在我想使用广度优先搜索方式从选定的父节点计算空节点。 例如 如果给定的父节点为 1,则
目标/动机 我想写一个服务,它应该一直运行。但是当服务已经运行时,应该不可能再次启动该服务。 用例 用户 X 打开页面 myService.php 并通过单击页面上的按钮启动服务。之后关闭浏览器。一段
我正在尝试编译 shogun 工具箱,但遇到了这个错误 C:/shogun-3.0.0/shogun-3.0.0/src/shogun/../shogun/mathematics/Math.h
需要学校的 JavaScript 作业帮助,但不知道该怎么做,希望得到一些提示? 我们应该创建一个 6 面掷骰子程序,用户可以选择应该掷多少个骰子,最少 1 个和最多 5 个骰子。 所用骰子数量的总和
我在无限 ScrollView 中有 5 张图片。 因此,为了使 scrollView 无限/循环,我将图像定位如下: 5 1 2 3 4 5 1含义:最后一张图片第一张图片第二张图片.....最后一
我正在使用 ExTwitter库,并希望能够偶尔终止对流式 API 的调用以更改参数。 我当前的代码看起来像这样: for tweet #finished end 关于elixir - 如何中断(无
我想每 3 秒更改一次 div 的背景。这需要循环,因此一旦最后一个背景图像显示,它就会循环回到第一个背景图像,依此类推。我在这样做时遇到了麻烦。 我之前发过一篇文章,内容非常模糊,没有得到帮助。
我在做this教程,无法让我的页面正确加载。我不断在控制台中收到错误:[$rootScope:infdig]。 我对 Angular 很陌生,但从我读到的内容来看,我在某个地方有一个无限循环。我预计它
所以我试图创建一个无限的 asyncIterator/生成器。该代码应该为“for wait of”循环生成“Hello”和“Hi”,然后永远等待下一个值。问题是它不等待第三个值,也不在循环后打印 2
下图显示了我如何在 HTML5/JS 中制作无限背景滚动。我的连续背景由 X block Canvas 组成。我将在到达下一个 Canvas 之前立即渲染它,并释放上一个 Canvas。这里的问题是动
作为一个业余项目,我正在研究一些自制的素数生成问题,尝试编写一些不同的实现作为自学 C 和 C++ 的方法。当然,生成低素数的最快方法是已经拥有它们,所以我想着手建立一个硬盘素数列表数据文件。我想编写
我是一名优秀的程序员,十分优秀!