- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试使用动态分配的堆栈来完成 K&R 的练习 5-10。我的代码基于第 4 章的代码(他们使用全局变量来实现堆栈)。问题是我的程序根本不起作用,我不知道出了什么问题。代码如下:
/* expr: evaluates a reverse Polish expression from the command line */
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#define MAXOP 100 /* maximal operator length */
#define NUMBER '0' /* signal that a number was found */
int getop(char *argv);
void push(double **top, double val);
double pop(double **top);
int main(int argc, char *argv[])
{
if (argc == 1) {
printf("usage: evaluate a reverse Polish expression from the command line\n");
return 1;
}
double *stack = malloc((argc-1)*sizeof(double));
if (stack == NULL) {
printf("error: couldn't allocate enough space for the stack\n");
return 2;
}
int i, type;
double op1, op2, *top = stack; /* top points to the next free stack position */
char s[MAXOP];
for (i = 1; argv[i] != NULL; i++) {
type = getop(argv[i]);
switch (type) {
case NUMBER :
push(&top, atof(argv[i]));
break;
case '+' :
op2 = pop(&top);
op1 = pop(&top);
push(&top, op1+op2);
break;
case '-' :
break;
case '*' :
break;
case '/' :
break;
case '%' :
break;
default :
printf("error: unknown command %s\n", argv[i]);
return 3;
break;
}
}
printf(" = %.8g\n", pop(&top));
free(stack);
return 0;
}
int getop(char *argv)
{
int i, c;
if (!isdigit(argv[0]))
return argv[0];
else
return NUMBER;
}
void push(double **top, double val)
{
**top = val;
(*top)++;
/* is error checking needed? */
}
double pop(double **top)
{
(*top)--;
return *(*top+1);
/* is error checking needed? */
}
似乎没有考虑运算符 - 例如输入 ./expr 1 12 13++ 产生输出 13。
编辑:感谢所有帮助人员,事实证明,push 和 pop 无法正常工作。我已经设法修复了该代码,尽管现在事后看来,我可以在编写代码之前做好更好的准备。
以下是更改后的代码:
/* expr: evaluates a reverse Polish expression from the command line */
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#define MAXOP 100 /* maximal operator length */
#define NUMBER '0' /* signal that a number was found */
int getop(char *argv);
void push(double **top, double val);
double pop(double **top);
int main(int argc, char *argv[])
{
if (argc == 1) {
printf("usage: evaluate a reverse Polish expression from the command line\n");
return 1;
}
double *stack = (double*) malloc((argc-1)*sizeof(double));
if (stack == NULL) {
printf("error: couldn't allocate enough space for the stack\n");
return 2;
}
int i, type;
double op1, op2, *top = stack; /* top points to the next free stack position */
char s[MAXOP];
for (i = 1; argv[i] != NULL; i++) {
type = getop(argv[i]);
switch (type) {
case NUMBER :
push(&top, atof(argv[i]));
break;
case '+' :
op2 = pop(&top);
op1 = pop(&top);
push(&top, op1+op2);
break;
case '-' :
op2 = pop(&top);
op1 = pop(&top);
push(&top, op1-op2);
break;
case 'x' :
op2 = pop(&top);
op1 = pop(&top);
push(&top, op1*op2);
break;
case '/' :
op2 = pop(&top);
op1 = pop(&top);
if (op2 != 0)
push(&top, op1/op2);
else {
printf("error: division by zero\n");
return 3;
}
break;
default :
printf("error: unknown command %s\n", argv[i]);
return 4;
break;
}
}
printf(" = %.8g\n", pop(&top));
free(stack);
return 0;
}
int getop(char *argv)
{
int i, c;
if (!isdigit(argv[0]))
return argv[0];
else
return NUMBER;
}
void push(double **top, double val)
{
**top = val;
(*top)++;
}
double pop(double **top)
{
double temp = *(*(top)-1);
(*top)--;
return temp;
}
最佳答案
您的代码似乎不明白您使用malloc
分配了一个数组,并且您正在尝试使用与基于指针的堆栈一起使用的“添加到前面”方法。您应该在将最近的项目插入堆栈后插入新值,并弹出最近插入堆栈的项目(即在堆栈的“末尾”)。
以下内容应该适合您。请注意,pcount
是指向堆栈上项目数的指针,否则您将不知道堆栈是否为空(例如2 +
将是无效输入,因为+
需要 2 个值,但堆栈上只有 1 个值),甚至在哪里添加另一个值,因为您无法确定堆栈的“结束”位置。
#include <math.h> // for HUGE_VAL; may need to link the math library?
// Push a value onto the stack and update the number of items on the stack.
void push(double *stk, double value, int *pcount)
{
// Add new values at the end of the stack (technically after the last item pushed).
stk[*pcount] = value;
++*pcount;
}
// Pop a value off the stack and update the number of items remaining on the
// stack. If there are no values, HUGE_VAL is returned. Since it is possibly
// a valid value on some implementations, checking for an error should be done
// using the value pcount points to:
//
// n = pop(stk, &stkCount);
// if (stkCount < 0) {
// // error: stack had no elements before pop
// }
//
double pop(double *stk, int *pcount)
{
if (*pcount >= 0) {
// Remove items from the end of the stack.
--*pcount;
return stk[*pcount];
}
return HUGE_VAL;
}
关于C-K&R 表达式 : evaluate a reverse Polish expression from the command line,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45270508/
我的 Web 应用程序在后端使用 Node.js 和 Express。当违反内容安全策略 (CSP) 时,报告 URI 报告空对象。我的后台代码如下: app.use(bodyParser.urlen
在服务器端提供静态服务的方式在 Express 中似乎非常简单: To serve static files such as images, CSS files, and JavaScript fil
var express = require('express'); var app = express(); 这就是我们创建快速应用程序的方式。但是这个'express()'是什么?它是方法还是构造函
我在尝试安装时收到以下错误 express : npm ERR! code ERR_OSSL_PEM_NO_START_LINE npm ERR! errno ERR_OSSL_PEM_NO_STAR
如 express 所述routing guide和 this answer ,我们可以创建“迷你应用程序”并从主应用程序使用它。但是我看到一段代码,它在模块中使用 app 而不是 router ap
我正在写一个 NestJS应用。现在我想安装 Express中间件 express-openapi-validator . 但是,我无法让它工作。有一个 description for how to
我看过很多类似的帖子,似乎我声明的 var1 似乎需要在其他地方传递,但我似乎无法弄清楚。 public Expression> CreateEqualNameExpression(string ma
Express(或 Connect 的)bodyParser 中间件被标记为已弃用,建议用户改用: app.use(connect.urlencoded()) app.use(connect.json
我只是想知道这种看似尴尬的配置的原因是什么(来自 Getting Started w/ Apollo Server ), const server = new ApolloServer({ //
我正在尝试在表单组中写入表单控件特定的验证错误消息。我在网上找到了几个教程和示例 ( such as this one ),概述了一个看似简单的 *ngIf div,如果在控件上检测到错误,则显示错误
我有一个简单的 Express 应用程序,托管在 AWS 上,使用无服务器框架。 我正在使用 serverless-http 包装 express 应用程序以部署到 AWS lambda 函数,并使用
我最近在 mozilla 教程的帮助下安装了 node 和 express。我正在安装应用程序生成器的下一步,但是当我运行时 npm install express-generator -g 在我的终
我遇到过两种不同的方式来定义 express、use() 中间件,我想知道它们之间是否有任何区别,或者它是否只是语法糖? 一个 const app = express(); app.use(cors(
我试图让我的 Jade 模板编写一个相对于当前 URL 的超链接 ( )。 例如,我的 View 是从 http://localhost/cats 调用的它看起来像这样: extends layou
检查 Express 文档我在下面看到了这种解决方案: app.all('/*', function(req, res) { console.log('Intercepting request
我似乎无法弄清楚如何包含多个模型。 我有三个模型。Tabs, Servers, and PointsTabs hasMany ServerServers belongsTo Tabs and hasM
我已使用Web PI安装IIS Express。在托盘中,没有IIS Express图标。如何在不使用命令行的情况下启动IIS Express?我希望IIS永久运行,因此没有命令行。 最佳答案 参见R
我不想在我的网站上使用 Jade 或 EJS。如何在不默认使用 Jade 模板的情况下创建快速站点?谢谢 最佳答案 如果您想要的是直接为静态 html 文件提供缓存资源的可能性,同时仍然能够点击“/”
Express是否支持HTTP动词“PATCH”,例如: app.patch("/api/resource", function(req, res){ ... }); 我检查了文档,对我来说似乎还不清
我正在快速服务器中运行 vue SPA。问题是当使用历史模式并刷新页面时,我得到一个 404 not found 异常。我尝试使用 connect-history-api-fallback 但不起作用
我是一名优秀的程序员,十分优秀!