日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代做Tiny Calculator parsing with YACC
代做Tiny Calculator parsing with YACC

時間:2025-03-25  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Homework 3: Tiny Calculator parsing with YACC/Bison)

Overview
This assignment builds on Homework 2 and focuses on extending your knowledge of compiler design. Specifically, you will
complete the syntax analysis phase by combining the deliverables from Homework 2 (lexical analysis using flex) with this
assignment's deliverable (syntax analysis using yacc or its GNU version, bison).
Feel free to seek ChatGPT help under the following guidelines:
Use it for suggestions, but ensure the work you submit is your own.
Share your experience in details in your README or submission comments if ChatGPT played a significant role in
solving the problem.
Objectives
Similar to Homework 2 (Lexical Analysis), the objectives of this assignment are:
1. Understanding the syntax analysis process as the application of the grammar of any programming language.
2. Many other business applications outside of the programming language domain need lexical and syntax analysis to handle
the user inputs in a more rigorous and user-friendly way.
3. Learning aged but extremely useful and popular tools, (f)lex and yacc (or bison). In homework 3, you are asked to use both
(f)lex and bison (yacc).
Before you start: Preparation
Read "Section 4.1 Introduction" in the textbook to get the basic ideas and background knowledge.
The front end of the compiler design is syntax analysis, which consists of two parts: lexical analysis, and syntactic
analysis. In the previous homework, you used the Unix (f)lex tool to understand how lexical analysis works. In this
homework, you are asked to combine the deliverable of the previous homework with the deliverable of this homework to
complete the full syntax analysis. You will be using yet another Unix tool, yacc (Yet Another Compiler Compiler) or bison
(yacc's GNU version) for syntax analysis (parsing).
Review class notes on the yacc/bison tool.
Refer to the diagram illustrating interactions between lex and yacc , noting that every time the parser ( yacc/bison ) needs
a token, it calls Lex::yylex() .
Below is the diagram describing lex and yacc interactions. Note that every time the parser (yacc/bison) needs a token,
Yacc/bison::yyparese() calls Lex::yylex().
 Homework 3: Tiny Calculator parsing with YACC/Bison)
%23view_name%3Dmon   1/7
Additional references: yacc/bison tool references:

precedence as well as associativity
Read both the   Operator Precedence   and   Context-Dependent Precedence   sections for handling general
operator precedence rules and unary minus operator
To Do
1. Write BNF grammar rules
Write BNF grammar rules to implement the tiny calculator with the following features. The grammar rules with detailed
descriptions must be listed in a comment section at the beginning of your code file or in a separate Markdown file.
statement_list: list of binary expression statements
statement (assignment): var = expression
expression:
(expression) : An expression in parenthesis to allow users to set precedence
5 binary arithmetic operations: +, -, *, /, ^.
- The behavior of each binary operation is the same as in Homework 2.
Variables: Support C-like identifiers to store numbers
Numbers: Support C-like signed integer or signed float numbers. (stored as double type internally)
NOTE: The calculator should support signs (+, -) e.g., 2 - -3 + 2 - 7 - -2 (output: 2)
2. Implement the Tiny Calculator
Use Unix yacc/bison tool to implement a rudimentary tiny calculator that:
computes the following basic arithmetic operation expressions.
I. addition: +
II. subtract: -
III. multiplication: *
IV. division: /
 Homework 3: Tiny Calculator parsing with YACC/Bison)
%23view_name%3Dmon   2/7
V. exponents: ^
Accepts user-entered binary arithmetic expressions, one per line.
Processes multiple expressions interactively until the user exits.
To commit operations, the user enters the RETURN key at the end of the statement.
Note that the user should be able to enter any number of expressions. See the Expected Output [8][9][10] cases.
For each calculation, the user may enter either an expression or assignment, as shown in the expected output file.
The input number for each operand can be an integer or double-precision floating point number.
Follows operator precedence and associativity rules.
Error Handling
Your program must recognize and handle the following errors:
Incorrect number format
Invalid grammar or missing operators
invalid infix binary arithmetic operation
rejecting any letters in the expression (invalid operands and/or operator type)
unmatching (nested) parentheses
Divide by zero error
Referring to undefined variables
You should test all the test cases in the Expected Outputs section below. Your results must be consistent with
the expected outputs.
3. Compare flex vs. yacc/bison
In your README, explain what tasks could not be performed using only the flex tool in Homework 2 but can now be
achieved using the yacc/bison tool. Provide clear reasoning for your observations.
Hints and guidelines:
1. Full implementation of the MIT bison Example: readme.md - Postfix Notation Calculator - Replit
(https://replit.com/@sungheenam/Postfix-Notation-Calculator#readme.md)
This REPL fully implements the example in the MIT example (Bison - Examples (mit.edu)
(http://web.mit.edu/gnu/doc/html/bison_5.html) ) above.
You may fork from the repl and read the readme.md file and sample output first before playing around with it. The
repl also has a makefile example; it is not the best one, but it would help you simplify the build process.
2. More examples in addition to the MIT example above
Example program for the lex and yacc programs - IBM Documentation (https://www.ibm.com/docs/en/aix/7.1?
topic=information-example-program-lex-yacc-programs) (A good starting point. It's somewhat similar to this
assignment)
3. flex programming
Update the flex program from HW2 to work with the bison code in HW3. Note that most of the programming logic
would be moved to the bison file. Basically, using the flex tool truly as the lexical analyzer purpose only.
Include "<your program>.tab.h" in the flex program. The *.tab.h file will be automatically generated when the bison
script gets processed. Read the postfix readme.md file linked above.
For this homework, you don't need to define any subroutines except yywrap() in flex because those subroutines in
flex including main() will be migrated to the bison program.
In the regular expression rules section of your flex code, you need to return the token and its lexeme when a token
defined in the bison file is recognized. For example, for var token in "stmt: var = expr",
In the definition section of the flex code:
var [_[:alpha:]][_[:alnum:]]*?
 Homework 3: Tiny Calculator parsing with YACC/Bison)
%23view_name%3Dmon   3/7
In the rules section, write a C++ code to pass the var token:
{var} {yylval.var = new std::string(yytext); return VAR;}??
4. yacc/bison programming.
Feel free to use C++ instead of C for Bison programming. Refer to the makefile example below to compile with
"g++" instead of "GCC".
Note that in your C++ code, you can't use the "using namespace std" macro, rather, you must use fully qualified
identifiers such as std::string, std::map, std::cout, std::endl, ...
Define the following in the declaration section:
In the C code definition section:
A. external functions?
extern int yylex();
extern int yyparse();
extern void yyerror(const char* s);
B. Storing values for the variables: You can use any data structure for the purpose, but I recommend using a C++
map (dictionary) data structure.
std::map<std::string, double> vars; // a dictionary storing variable names and their values
In the bison definition section:
A. Associating yylval with tokens' Values:
yylval is used to pass semantic values from the lexer (Flex) to the parser (Bison). It acts as a communication
channel between the scanner (lexer) and the parser.
Steps to Associate yylval with Tokens' Values
1. Define a union for Token Values ( %union )
2. Associate Each Token with a Data Type ( %token <type> )
3. Assign Values in the Lexer ( yylex() ) - see above in "flex programming"
4. Use yylval in the Grammar Rules
Data structure to store the values of some tokens (see below for hints of its usage)
%union {
 ? double dval; /* to store numbers token value */
 ? std::string *var; /* to store variable ID */
}
A. token (from flex) for terminals. Tokens are what's returned by the flex tool:
%token e.g., % token <dval> NUMBER /* NUMBER token returns a double number */
B. type for non-terminals defined in the grammar if they return values:
%type e.g., % type <dval> expr /* expr return a double number */
C. Association rules for operators:
%right or
%left
D. Precedence rules for operators - Order matters!
The precedence of operators is determined by the order in which they appear, with the lowest precedence at
the top and the highest at the bottom
Define rules (grammar)
An assignment rule (stmt: var = expr) may associate a variable in the dictionary (vars) with the value of expr
e.g. vars[*$1] = $3;
 Homework 3: Tiny Calculator parsing with YACC/Bison)
%23view_name%3Dmon   4/7
A good example of defining rules that is similar to this assignment: Bison - Examples (mit.edu):
(http://web.mit.edu/gnu/doc/html/bison_5.html) Infix Notation Calculator: calc
(http://web.mit.edu/gnu/doc/html/bison_toc.html#SEC27)
Build Instructions example
A make file example: (https://ucdenver.instructure.com/courses/558317/files/25220969?wrap=1)
(https://ucdenver.instructure.com/courses/558317/files/25220969/download?download_frd=1)
Disclaimer: This makefile includes a basic set of commands and is intended as a beginner's guide to understanding
makefile formats. It should be treated as a starting point.
For effective use, always execute 'make clean' before running 'make' from the "Shell" tab rather than clicking the green
"Run" button. Additionally, note that this makefile contains additional commands designed to rename generated *.c files
to *.cpp files, as the 'g++' compiler is employed instead of 'gcc'.
Entering command sequence for C++ manually:
//lex program : calc.l, yacc program : calc.y
$flex calc.l
$bison -dtv calc.y # use bison instead of yacc
$mv -f lex.yy.c lex.yy.cpp
$mv -f calc.tab.c calc.tab.cpp
g++ -c -std=c++11 lex.yy.cpp -lm
g++ -c -std=c++11 calc.tab.cpp -lm
g++ -o calc *.o -lstdc++ -lm
Expected Outputs
Expected Output example file (https://ucdenver.instructure.com/courses/558317/files/25872913?wrap=1)
(https://ucdenver.instructure.com/courses/558317/files/25872913/download?download_frd=1)
Your output should include, at least, all the test cases in the file
REPL Setup:
First, create a new REPL with "Bash", not a "C++" or "C".
Installing Flex: When you execute the 'flex' command for the first time from the REPL console, it will prompt you to
install flex. From the two available options, select the "flex" option.
Installing Bison/Yacc: Upon running the 'bison' or 'yacc' command from the REPL console, you will be prompted to
install a bison/yacc application. Select the "yacc" option, not 'bison_3_5'. The current REPL version encounters
installation issues with the 'bison_3_5' application for reasons unknown to us.
In Case that Bison_3_5 has been installed:
If you have installed bison_3_5 already, perform the following steps to fix the issue:
1. Click on the three dots (the "more" icon) located in the File Navigation window  s leftmost column.
2. Choose "Show hidden ..." (the last option in the list). This will show all hidden files.
3. In the File Navigation window  s lower section, locate the "replit.nix" file.
 Homework 3: Tiny Calculator parsing with YACC/Bison)
%23view_name%3Dmon   5/7
4. This file holds your REPL configuration information. Within the 'deps = [ .... ]' section, if an entry for the
"pkgs.bison_3_5" instance is present, manually remove the line.
5. Run the "bison -dtv <your yacc code>.y" command from the command line window, ensuring you choose the
"yacc" option this time.
Note: For our assignment  s intent, "yacc" is equally good as "bison".
Deliverable
Read the rubric first before you submit it. Submit the following items:
(f)lex and yacc/bison source codes. Please submit two sets of identical files - one with the original source code files and the
other with *.txt extensions for my review.
An output file demonstrating the test results, which cover the operations in the Expected Output section above.
A readme.md containing:
the answers to the comparison task from Step 3 in the "ToDo" list
BNF grammar rules and program documentation
Or
REPL "join" link containing
flex and bison source codes
The output file with your test results covers at least the operations in the Expected Output section above.
readme.md file for answering the tasks and the BNF documentation of your program
Extra Credit (Your own project): up to 10 points
Can you think of any project you have worked on or would work on in the future where yacc/lex can help to simplify a front-end
interface? Submit:
A one-page proposal with a synopsis of the project that describes how the lex/yacc tool would help your project.
(f)lex and yacc/bison source code and output demonstrating implementation of the project.
View Rubric
HW3 Bison - Tiny Calculator
Criteria Points
Description of
criterion
/5 pts
why_bison
Using this assignment as example, describe the tasks that could not be done or were
extremely difficult to implement if flex alone were used.
5 pts
 Homework 3: Tiny Calculator parsing with YACC/Bison)
%23view_name%3Dmon   6/7
Choose a submission type
Bison
Implementation
/40 pts
Rules
/5 pts
Extra credit
/0 pts
Bison Implementation
- General arithmetic operations completeness: 10
* -2 if not displaying calculation number
- Precedence and association of operators: 5
* -2 if unary sign precedence (+/-) is not properly handled
- Handling variables correctly: 10 points
* -3 if no variable update message is displayed
* -3 if the variable output is not properly displayed
- Interworking with flex: 5 points
- Error handling: 10 points
* -2 if not check if a referenced variable is defined or not
* -3 if no DBZ check
* -2 if displaying output when there is an error
40 pts
Rules
- Correctly listing all the rules (productions)
5 pts
Extra Credit
- Proposal: 2
- Completeness of implementation: 8
0 pts
Text Web URL Upload More
Submit Assignment
 Homework 3: Tiny Calculator parsing with YACC/Bison)

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當前頁
  • 上一篇:彩虹花全國客服電話-彩虹花24小時人工服務熱線
  • 下一篇:297.201代做、代寫python編程語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        欧美在线精品免播放器视频| 亚洲第一区中文99精品| 欧美激情久久久| 激情综合色综合久久综合| 国产日韩视频一区二区三区| 国产一区二区三区高清| 国产精品久久久久永久免费观看| 欧美另类videos死尸| 久久久久久香蕉网| 亚洲欧美综合另类中字| 欧美69wwwcom| 欧美色综合网| 久久不射网站| 亚洲第一精品夜夜躁人人躁| 国产三级精品在线不卡| 久久深夜福利免费观看| 亚洲激情午夜| 宅男在线国产精品| 欧美日韩日本国产亚洲在线| 噜噜噜在线观看免费视频日韩| 久久久www成人免费毛片麻豆| 国产一区二区三区的电影| 激情综合色综合久久综合| 国产精品国产精品国产专区不蜜| 欧美日韩亚洲一区二区三区在线| 久久裸体视频| 亚洲三级电影全部在线观看高清| 亚洲一区日本| 国产亚洲综合性久久久影院| 欧美日韩中文在线观看| 麻豆av一区二区三区| 国产视频自拍一区| 免费不卡在线视频| 欧美日韩精品福利| 国产裸体写真av一区二区| 国产精品伦子伦免费视频| 免费精品99久久国产综合精品| 国产欧美精品日韩精品| 欧美日韩在线亚洲一区蜜芽| 欧美精品一区二区三区很污很色的| 一卡二卡3卡四卡高清精品视频| 狠狠做深爱婷婷久久综合一区| 国产亚洲精品久久久久动| 亚洲丁香婷深爱综合| 国模 一区 二区 三区| 国内外成人在线视频| 国产欧美在线看| 欧美高清在线精品一区| 亚洲精品少妇30p| 国产精品私拍pans大尺度在线| 亚洲国产美女| 国产精品资源在线观看| 久久久97精品| 久久亚洲图片| 亚洲午夜国产成人av电影男同| 久久久.com| 国产日韩欧美在线观看| 欧美成人a∨高清免费观看| 亚洲成人中文| 久久精品男女| 欧美a级一区二区| 欧美激情国产日韩精品一区18| 久久网站免费| 免费日本视频一区| 欧美一级黄色网| 在线亚洲伦理| 欧美激情综合网| 国产精品腿扒开做爽爽爽挤奶网站| 亚洲婷婷综合久久一本伊一区| 亚洲精品日韩在线| 一区二区不卡在线视频 午夜欧美不卡'| 欧美日韩一区二区在线播放| 一区在线观看| 国产精品乱码一区二三区小蝌蚪| 欧美另类综合| 亚洲精品欧美一区二区三区| 亚洲欧美精品一区| 91久久极品少妇xxxxⅹ软件| 久久国产一区二区| 久久9热精品视频| 国产精品午夜在线观看| 一区在线观看视频| 久久视频在线免费观看| 亚洲高清免费视频| 国产综合欧美在线看| 亚洲欧美日韩一区二区三区在线观看| 女女同性女同一区二区三区91| 国产精品美女黄网| 欧美视频在线观看免费| 亚洲精品免费网站| 亚洲女女做受ⅹxx高潮| 美国十次了思思久久精品导航| 欧美黑人多人双交| 巨胸喷奶水www久久久免费动漫| 欧美黑人在线播放| 中文网丁香综合网| 在线视频观看日韩| 亚洲另类视频| 欧美成人亚洲成人日韩成人| 美女尤物久久精品| 欧美日本成人| 国产欧美一区二区精品性| 欧美电影专区| 伊人久久大香线蕉综合热线| 亚洲影院色在线观看免费| 欧美亚洲在线播放| 久久亚洲二区| 欧美激情精品| 一区二区亚洲欧洲国产日韩| 欧美黄色片免费观看| 国产精品腿扒开做爽爽爽挤奶网站| 欧美日韩国产成人精品| 亚洲美女在线看| 性欧美xxxx视频在线观看| 国产精品sm| 亚洲欧美日韩成人高清在线一区| 国产精品99久久久久久宅男| 狠狠操狠狠色综合网| 一本久道久久综合婷婷鲸鱼| 国产精品社区| 亚洲精品一区二区三区四区高清| 国产精品久久久久久久久久免费看| 国产亚洲精品久久久久久| 久久尤物视频| 久久视频国产精品免费视频在线| 欧美大片在线观看| 久久欧美中文字幕| 99视频一区二区| 悠悠资源网亚洲青| 亚洲高清在线播放| 亚洲一区自拍| 亚洲毛片网站| 欧美日韩免费观看一区=区三区| 久久三级福利| 91久久综合亚洲鲁鲁五月天| 午夜精品一区二区三区电影天堂| 国产精品视频999| 欧美另类在线播放| 欧美一区2区视频在线观看| 国产欧美日韩精品丝袜高跟鞋| 欧美视频在线观看一区二区| 女女同性精品视频| 国产美女在线精品免费观看| 国产欧美日韩综合精品二区| 欧美日韩视频在线一区二区观看视频| 亚洲一区激情| 激情小说另类小说亚洲欧美| 久久久久www| 在线亚洲免费| 国产精品国产三级国产专区53| 国产日韩欧美高清| 狠狠干综合网| 国产美女精品一区二区三区| 欧美日韩一区二区在线观看视频| 久久成人18免费观看| 国产日韩专区在线| 亚洲国产精品一区二区www在线| 亚洲国产黄色片| 久久久久国产一区二区三区| 中文在线资源观看网站视频免费不卡| 亚洲国产成人高清精品| 麻豆精品国产91久久久久久| 久久综合九色综合欧美就去吻| 欧美精品亚洲|