- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用这个 Bison 程序时遇到了问题。它必须接收一串由 1 和 0 组成的字符串,其句点如“101.101”,并将它们乘以 2^n。例如:
"101.101" = (1*2^2)+(0*2^1)+(1*2^0)+(1*2^-1)+(0*2^-2)+(1*2^-3)=5.625
该点表示 pow 何时为正值或为负值。我有以下语义 Action :
S→ L.R
S→ L
L → L1 B
L → B
R → R1 B
R → B
B→ 0
B → 1
Sematic Rules
L.pos=0;R.pos=-1;S.val=L.val+R.val
L.pos=0;S.val=L.val;
L1.pos = L.pos + 1; B.pos = L.pos; L.val = L1.val + B.val;
B.pos = L.pos; L.val = B.val;
R1.pos = R.pos - 1; B.pos = R.pos; L.val = L1.val + B.val;
B.pos = R.pos; L.val = B.val;
B.val=0;
B.val = 1*2^B.pos;
我现在遇到的问题是我不知道为什么 .pos 变量不起作用,它们的值始终为 0。我的 Bison 代码是:
%{
#include <string.h>
#include <stdio.h>
#include<stdlib.h>
void yyerror (char *string);
%}
%union {
struct named_for_discussion_below {
int pos;
int val;
} pair;
}
%token DOT
%token ZERO
%token ONE
%token l1
%token r1
%type <pair> b l r s;
%%
x: s {/*printf(" the number is %d \n",$1);*/}
;
s: l DOT r {$1.pos=0;$3.pos=-1;$$.val=$1.val+$3.val;/*printf(" the both numbers are %d and %d\n",$1,$3);*/}
| l {$1.pos=0;$$.val=$1.val;/*printf(" the numbers is %d \n",$1);*/}
;
l: l b {$1.pos = $$.pos + 1; $2.pos = $$.pos; $$.val = $1.val + $2.val;printf(" the number is left, l pos is %d and l val is %d \n", $$.pos, $$.val);}
| b {$1.pos = $$.pos; $$.val = $1.val;printf(" the number is left, l pos is %d and l val is %d \n", $$.pos, $$.val);}
;
r: r b {$1.pos = $$.pos - 1; $2.pos = $$.pos; $$.val = $1.val + $2.val;printf(" the number is right, r pos is %d and r val is %d \n", $$.pos, $$.val);}
| b {$1.pos = $$.pos; $$.val = $1.val; printf(" the number is right, r pos is %d and r val is %d \n", $$.pos, $$.val);}
;
b: ZERO {$$.val = 0; printf(" the number is 0, val is %d and pos is %d \n",$$.val,$$.pos);}
| ONE {$$.val = 1*2^($$.pos); printf(" the number is 1, val is %d and pos is %d \n",$$.val,$$.pos);}
;
%%
#include "lex.yy.c"
void yyerror (char *string){
printf ("%s",string);
}
int main (){
yyparse();
}
lex 文件是:
%{
#include <stdio.h>
#include <math.h>
#include "y.tab.h"
%}
BINARY [0-1]
%%
"1" {return ONE;}
"0" {return ZERO;}
"." {return DOT;}
%%
最佳答案
yacc 中的属性始终是合成属性,其值从解析树的叶子向上传播到根,而不是向下传播。
如果你想使用继承属性,你需要使用btyacc这样的工具(您可以获得更新版本 here )。这允许您编写如下代码:
%{
#include <string.h>
#include <stdio.h>
#include<stdlib.h>
%}
%union {
double val;
int pos;
}
%token DOT
%token ZERO
%token ONE
%token l1
%token r1
%type <val> b(<pos>) l(<pos>) r(<pos>) s;
%%
x: s {printf(" the number is %f \n",$1);}
;
s: l(0) DOT r(-1) {$$=$1+$3; /*printf(" the both numbers are %f and %f\n",$1,$3);*/}
| l(0) {$$=$1; /*printf(" the numbers is %f \n",$1);*/}
;
l($pos): l($pos+1) b($pos) { $$ = $1 + $2; printf(" the number is left, l pos is %d and l val is %f \n", $pos, $$);}
| b($pos) { $$ = $1; printf(" the number is left, l pos is %d and l val is %f \n", $pos, $$);}
;
r($pos): b($pos) r($pos-1) { $$ = $1 + $2; printf(" the number is right, r pos is %d and r val is %f \n", $pos, $$);}
| b($pos) { $$ = $1; printf(" the number is right, r pos is %d and r val is %f \n", $pos, $$);}
;
b($pos): ZERO { $$ = 0; printf(" the number is 0, val is %f and pos is %d \n",$$,$pos);}
| ONE { $$ = pow(2.0, $pos); printf(" the number is 1, val is %f and pos is %d \n",$$,$pos);}
;
%%
#include "lex.yy.c"
void yyerror (const char *string, ...){
printf ("%s",string);
}
int main (){
yyparse();
}
请注意,我还将 val
更改为 double
,因为 int
只能保存整数。我还将其更改为使用 pow
进行求幂(^
在 C 中是异或)。
关于c - Bison语义规则变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19309566/
我需要在 nginx-ingress 版本上允许来自多个来源的请求:http://localhost:4200、http://localhost:4242 等1.7.1.但我无法对多个来源执行此操作,
我正在部署我使用 APIGILITY 开发的 API到 IIS。由于 IIS 不支持 .htaccess,我试图从 .htaccess 文件的内容创建 web.config 文件。我使用 IISv7.
我正在尝试更改上面 css 样式中的“宽度”规则。在“inspect element”中你可以看到宽度是1008px。我不希望它是 1008px 但它不会让我在 css 样式中更改它你可以看到它被“删
外部css赋值有2种方法,我用的是第一种;大多数网站使用第二种方法。我想知道我是否做错了! 第一种方法: 为几乎每个 css 规则创建一个类并在任何地方使用它们。 blah blah .f_
RDF使用 WEB 标识符 (URIs) 来标识资源,使用属性和属性值来描述资源 RDF 资源、属性和属性值 RDF使用 WEB 标识符来标识事物,并通过属性和属性值来描述资源。 关于资源、属性
我想挖掘特定的 rhs 规则。文档中有一个示例证明这是可能的,但仅适用于特定情况(如下所示)。先来一个数据集来说明我的问题: input {b=100002} 0.2500000 0.250000
我想让 nginx 从网站根目录(:http://localhost:8080/)提供一个静态文件,但它为我的代理通行证提供服务;它提供“/”规则而不是“=/”。 这是我的 nginx 配置的样子:
根据gnu make documentation , 如果一个规则通过一次调用生成多个目标(例如,一个配方执行一个带有多个输出文件的工具),你可以使用 '&:' 规则语法来告诉 make。但是,当在多
我已阅读Firebase Documentation并且不明白什么是 .contains()。 以下是文档中 Firebase 数据库的示例规则: { "rules": { "rooms"
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 6 年前。 Improv
我正在尝试做一些多态性练习,但我无法弄清楚这种多态性是如何工作的。我没有找到任何关于这种练习的深入信息。希望大家能给我一些解释。 练习1: class Top { public void m(
为了调试复杂的 XSLT 转换,我将其分为几个部分:首先构建 %.1.xml,然后使用它构建 %.2.xml ,最后构建 %.3.xml。一切正常,但如果我要求 Make 构建最后一个,Make 总是
我尝试了 hacerrank 的 slove 练习 Click我不知道如何添加这些规则: ► 它可以包含 4 个一组的数字,并用一个连字符“-”分隔。 ► 不得有 4 个或更多连续重复数字。 这是我的
我正在尝试编写一个小测验,我希望“再试一次”按钮遵循与“else”之前的“if”语句相同的规则 using System; public class Program { public stat
在我的 Spring/Boot Java 项目中,我有一组服务方法,例如以下一个: @Override public Decision create(String name, String descr
我正在阅读 Covariant virtual function .上面写着 假设 B::f 覆盖了虚函数 A::f。如果满足以下所有条件,A::f 和 B::f 的返回类型可能不同: 1) The
我工作的公司想要分发(在公共(public)链接中)具有内部签名的应用程序。我很确定 Apple 否认这种事情,但我在官方文档/契约(Contract)中没有找到任何相关信息。 有谁知道它到底是如何工
我是 CSS 新手。我观察到一个奇怪的 CSS 行为,其中一个元素具有以下 CSS 属性 .container .header{ color: #FFFFFF; font-size: 2em;
这个问题在这里已经有了答案: Is there a CSS selector for elements containing certain text? (21 个答案) 关闭 7 年前。
我有以下 CSS: workoutcal.css: .errorlist{ color:red; } 以下基本模板: base.html: {% load static %} {
我是一名优秀的程序员,十分优秀!