合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

        COMPILER代做、代寫C/C++設(shè)計(jì)編程

        時(shí)間:2024-06-12  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



        COMPILER PROJECT 2024 
         
        The goal of the term-project is to implement a bottom-up syntax analyzer (a.k.a., parser) as we’ve 
        learned. More specifically, you will implement the syntax analyzer for a simplified C programming 
        language with the following context free grammar G; 
        CFG G: 
        01: CODE → VDECL CODE | FDECL CODE | ϵ 
        02: VDECL → vtype id semi | vtype ASSIGN semi 
        03: ASSIGN → id assign RHS 
        04: RHS → EXPR | literal | character | boolstr 
        05: EXPR → EXPR addsub EXPR | EXPR multdiv EXPR 
        06: EXPR → lparen EXPR rparen | id | num 
        07: FDECL → vtype id lparen ARG rparen lbrace BLOCK RETURN rbrace 
        08: ARG → vtype id MOREARGS | ϵ 
        09: MOREARGS → comma vtype id MOREARGS | ϵ 
        10: BLOCK → STMT BLOCK | ϵ 
        11: STMT → VDECL | ASSIGN semi 
        12: STMT → if lparen COND rparen lbrace BLOCK rbrace ELSE 
        13: STMT → while lparen COND rparen lbrace BLOCK rbrace 
        14: COND → COND comp COND | boolstr 
        15: ELSE → else lbrace BLOCK rbrace | ϵ 
        16: RETURN → return RHS semi 
         
        ✓ Terminals (21) 
        1. vtype for the types of variables and functions 
        2. num for signed integers 
        3. character for a single character 
        4. boolstr for Boolean strings 
        5. literal for literal strings 
        6. id for the identifiers of variables and functions 
        7. if, else, while, and return for if, else, while, and return statements respectively 8. class for class declarations 
        9. addsub for + and - arithmetic operators 
        10. multdiv for * and / arithmetic operators 
        11. assign for assignment operators 
        12. comp for comparison operators 
        13. semi and comma for semicolons and commas respectively 
        14. lparen, rparen, lbrace, and rbrace for (, ), {, and } respectively 
        ✓ Non-terminals (13) 
        CODE, VDECL, ASSIGN, RHS, EXPR, FDECL, ARG, MOREARGS, BLOCK, STMT, COND, ELSE, 
        RETURN 
        ✓ Start symbol: CODE 
         
        Descriptions 
        ✓ The given CFG G is non-left recursive, but ambiguous. 
        ✓ Codes include zero or more declarations of functions and variables (CFG line 1) 
        ✓ Variables are declared with or without initialization (CFG line 2 ~ 3) 
        ✓ The right hand side of assignment operations can be classified into four types; 1) arithmetic 
        operations (expressions), 2) literal strings, 3) a single character, and 4) Boolean strings (CFG 
        4) 
        ✓ Arithmetic operations are the combinations of +, -, *, / operators (CFG line 5 ~ 6) 
        ✓ Functions can have zero or more input arguments (CFG line 7 ~ 9) 
        ✓ Function blocks include zero or more statements (CFG line 10) 
        ✓ There are four types of statements: 1) variable declarations, 2) assignment operations, 3) ifelse
         statements, and 4) while statements (CFG line 11 ~ 13) 
        ✓ if and while statements include a conditional operation which consists of Boolean strings 
        and condition operators (CFG line 12 ~ 14) ✓ if statements can be used with or without an else statement (CFG line 12 & 15) 
        ✓ return statements return 1) the computation result of arithmetic operations, 2) literal strings, 
        3) a single character, or 4) Boolean strings (CFG line 16) 
        ✓ This is not a CFG for C. This is for simplified C. So, you don’t need to consider grammars 
        and structures not mentioned in this specification. 
         
        Based on this CFG, you should implement a bottom-up parser as follows: 
        ✓ Discard an ambiguity in the CFG 
        ✓ Construct a SLR parsing table for the non-ambiguous CFG through the following website: 
        http://jsmachines.sourceforge.net/machines/slr.html 
        ✓ Implement a SLR parsing program for the simplified Java programming language by using the 
        constructed table. 
         
        For the implementation, please use C, C++, or Python (If you want to use . Your syntax analyzer 
        must run on Linux or Unix-like OS without any error. 
        Your syntax analyzer should work as follows: 
        ✓ The execution flow of your syntax analyzer: 
        syntax_analyzer <input file> 
        ✓ Input: A sequence of tokens (terminals) written in the input file 
        e.g., vtype id semi vtype id lparen rparen lbrace if lparen boolstr comp boolstr rparen lbrace 
        rbrace 
        ✓ Output 
        ◼ (If a parsing decision output is “accept”) please construct a parse tree (not abstract 
        syntax tree) for the input sequence 
        ◆ You can design the data structure to represent the tree as you want. 
        ◼ (If an output is “reject”) please make an error report which explains why and where the error occurred (e.g., line number) 
         
        Term-project schedule and submission 
        ✓ Deadline: 6/9, 23:59 (through an e-class system) 
        ◼ For a delayed submission, you will lose 0.1 * your original project score per each 
        delayed day 
        ✓ Submission file: team_<your_team_number>.zip or .tar.gz 
        ◼ The compressed file should contain 
        ◆ The source code of your syntax analyzer with detailed comments 
        ◆ The executable binary file of your syntax analyzer (if you implemented using 
        a complied language) 
        ◆ Documentation (the most important thing!) 
        ⚫ It must include 1) your non-ambiguous CFG G and 2) your SLR parsing table 
        ⚫ It must also include any change in the CFG G and all about how your syntax 
        analyzer works for validating token sequences (for example, overall 
        procedures, implementation details like algorithms and data structures, 
        working examples, and so on) 
        ◆ Test input files and outputs which you used in this project 
        ⚫ The test input files are not given. You should make the test files, by yourself, 
        which can examine all the syntax grammars. 

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




















         

        掃一掃在手機(jī)打開當(dāng)前頁
      1. 上一篇:什么地方辦越南簽證最快(越南電子簽證多長時(shí)間能拿到)
      2. 下一篇:菲律賓留學(xué)生簽證過期(學(xué)生簽過期解決方式)
      3. 無相關(guān)信息
        合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        出評 開團(tuán)工具
        出評 開團(tuán)工具
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
        海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
        海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
        合肥機(jī)場巴士4號線
        合肥機(jī)場巴士4號線
        合肥機(jī)場巴士3號線
        合肥機(jī)場巴士3號線
        合肥機(jī)場巴士2號線
        合肥機(jī)場巴士2號線
        合肥機(jī)場巴士1號線
        合肥機(jī)場巴士1號線
      4. 短信驗(yàn)證碼 酒店vi設(shè)計(jì) NBA直播 幣安下載

        關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

        Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
        ICP備06013414號-3 公安備 42010502001045

        主站蜘蛛池模板: 国产AV午夜精品一区二区入口| 国产成人无码一区二区三区在线| 国产成人一区二区三区| 97精品一区二区视频在线观看| 国产精品综合AV一区二区国产馆| 久久精品综合一区二区三区| 国产精品亚洲一区二区麻豆| 日韩精品一区二区三区在线观看l| 日韩美女在线观看一区| 亚洲AV永久无码精品一区二区国产| 日韩人妻无码一区二区三区久久99| 国产精品一区二区久久不卡| 免费无码毛片一区二区APP| 久久精品无码一区二区三区免费 | 性色AV 一区二区三区| 国产成人片视频一区二区| 无码人妻精品一区二区三区夜夜嗨| 亚洲日韩国产欧美一区二区三区 | 亚洲天堂一区二区| 亚洲熟女乱色一区二区三区 | 麻豆一区二区免费播放网站| 制服美女视频一区| 无码人妻一区二区三区免费n鬼沢| 无码喷水一区二区浪潮AV| 伊人精品视频一区二区三区| 亚洲精品无码一区二区| 日韩AV无码一区二区三区不卡毛片 | AV无码精品一区二区三区宅噜噜| 国产精品伦一区二区三级视频| 无码aⅴ精品一区二区三区| 亚洲一区二区三区偷拍女厕| 国内精品视频一区二区三区| 免费日本一区二区| 精品一区二区三区无码视频| 亚洲AV无码一区二区三区人| 色妞AV永久一区二区国产AV| 无码人妻精品一区二| 亚洲色无码专区一区| 无码精品一区二区三区在线| 成人在线一区二区| 国产产一区二区三区久久毛片国语 |