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

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

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



        COMP2045 Coursework 2024
        Introduction
        This coursework is worth 40% of the module mark. It requires you to write C++
        programs and a report that solve the task described below. The deadline for this
        exercise is 23:55pm on Monday 29th April 2024.
        Read the entire document before beginning the exercise.
        If you have any questions about this exercise, please ask in the Q&A forum on
        Moodle, after a lecture, in a lab, or during the advertised office hours. Do not post
        your program or parts of your program to Moodle as you are not allowed to share
        your coursework programs with other students. If any questions require this
        exercise to be clarified then this document will be updated and everyone will be
        notified via Moodle.
        Task
        Your task is to implement an algorithm for the game of Goofspiel in C++ and
        write a report on testing the algorithm.
        Goofspiel is a card game for two players, using cards from a standard deck of
        cards. Each suit is ranked, i.e. ace is worth one point, 2 is two points, etc., jack 11,
        queen 12, and king 13 points.
        One suit is singled out as the "prizes"; each of the remaining suits becomes a
        hand for one player, with one suit discarded. The prize cards are shuffled and
        placed between the players with one card turned up.
        Play proceeds in a series of rounds. The players make sealed bids for the top
        (face up) prize by selecting a card from their hand (keeping their choice secret
        from their opponent). Once these cards are selected, they are simultaneously
        revealed, and the player making the highest bid takes the prize card. If there is a
        tie, the prize card value is equally split between the tied players. The cards used for
        bidding are discarded, and play continues with a new upturned prize card.
        After 13 rounds, there are no remaining cards and the game ends. The player
        who has gained the highest sum of the prize cards wins the game.
        See reference [**3] for more details of Goofspiel and the state-of-the-art
        strategies for the game.
        You should implement a program of Goofspiel game that the user plays against
        an automatic algorithm repeatedly. The program should give a score (or scores) on
        how well the user has performed in the game playing. You should test the
        performance of the strategy you developed against the state-of-the-art strategies
        (This can be done in the program of Goofspiel game or in a separate program).
        Some other requirements of your C++ program of Goofspiel game include:
        1. It must use C++ Object Oriented Programming (OOP), rather than C style
        sequential programming.
        2. It must be an interactive game that the user plays against computer.
        3. It must allow input from the user (by means of keyboard or mouse).
        4. It must show results (win, lose, tie, or scores).

        Submission
        You must submit a zip file that contains a report (no more than 4 pages) and all
        source code for this exercise. The code files should compile and run without
        warning and error messages on X2Go.
        You should explain the details of your programs in the report, including the
        hierarchy of classes used in your game and the strategy of Goofspiel you have
        designed. You should also evaluate the performance of the strategy – how well it
        performs against other strategies and how well it performs against human players.
        (See [3] for an example of evaluation of Goofspiel strategies via competitions).
         Late submissions: Late submissions will lose 2 percentage points per hour,
        rounded up to the next whole hour. No late submissions will be accepted more than
        48 hours after the exercise deadline. If you have extenuating circumstances you
        must file them before the deadline.
        Marking
        The marking scheme will be as follows:
        • Testing (30% or 12 marks): Your programs should satisfy the hard
        requirements. As noted in the submission section, if your programs do not
        compile then you will lose all testing marks.
        o Correctness. The programs always give correct outputs according to the
        rule of game in the tests. (10 tests, 1 mark for each test)
        o Robustness. The programs handle some incorrect user inputs. (2 marks)
        o No runtime error. (5 marks deduction for a runtime error)
        o No memory leak. (1 mark deduction for a memory leak)
        • Satisfaction of constraints (10% or 4 marks):
        o The programs use C++ object-oriented techniques correctly. (2 marks)
        o The programs are well formatted, and they contain appropriate
        comments. (1 mark)
        o The game contains a user-friend interface to play with. (1 mark)
        • Quality of the algorithm (10% or 4 marks):
        o Your algorithm has significant differences from others. (2 marks)
        o Your algorithm performs better than the deterministic and random
        strategies. (1 mark)
        o Your algorithm performs well competing against human players in
        repeated game playing. (1 mark)
        o
        • Report (50% or 20 marks):
        o Appropriate description of the game, the algorithms, the classes in the
        programs, and testing of the performance of your proposed algorithm. (4
        marks)
        o Evaluation of the algorithm
        ▪ Clear and accurate statements on the performance of your
        proposed algorithm. (2 marks)
        ▪ Appropriate design of testing (2 marks)
        ▪ Sufficient testing results to support your conclusions. (4 marks)
        ▪ Appropriate uses of tables and figures. (4 marks)
        ▪ Analysis of your algorithm (why does it perform well or poor). (2
        marks)
        o Structure and language
        ▪ Well organized structure. (1 mark)
        ▪ Academic English writing. (1 mark)
        Plagiarism
        You should complete this coursework on your own. Anyone suspected of plagiarism
        will be investigated and punished in accordance with the university policy on
        plagiarism (see your student handbook and the University Quality Manual). This may
        include a mark of zero for this coursework.
         You should write the source code required for this assignment yourself. You must
        not copy code from Internet. You must not copy or share source code with other
        students. You must not work together on your solution. You can informally talk about
        higher-level ideas but not to a level of detail that would allow you all to create the
        same source code.
         Remember, it is quite easy for experienced lecturers to spot plagiarism in source
        code. We also have automated tools that can help us identify shared code, even with
        modifications designed to hide copying. If you are having problems you should ask
        questions rather than plagiarize. If you are not able to complete the exercise then you
        should still submit your incomplete program as that will still get you some of the
        marks for the parts you have done (but make sure your incomplete solution compiles
        and partially runs!).

        請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 





         

        掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
      1. 上一篇:代做CSci 4061、代寫c/c++設(shè)計(jì)編程
      2. 下一篇:CSCI 2122代寫、代做C/C++編程語(yǔ)言
      3. 無(wú)相關(guān)信息
        合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
        出評(píng) 開(kāi)團(tuán)工具
        出評(píng) 開(kāi)團(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ī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士4號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士3號(hào)線
        合肥機(jī)場(chǎng)巴士2號(hào)線
        合肥機(jī)場(chǎng)巴士2號(hào)線
        合肥機(jī)場(chǎng)巴士1號(hào)線
        合肥機(jī)場(chǎng)巴士1號(hào)線
      4. 短信驗(yàn)證碼 酒店vi設(shè)計(jì) deepseek 幣安下載 AI生圖 AI寫作 aippt AI生成PPT 阿里商辦

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

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

        主站蜘蛛池模板: 亚洲丰满熟女一区二区v| 精品少妇ay一区二区三区| 亚洲综合激情五月色一区| 久久无码一区二区三区少妇| 亚洲综合色一区二区三区小说| 91精品一区国产高清在线| 精品91一区二区三区| 亚洲日本va一区二区三区 | 日韩在线视频一区二区三区 | 日韩动漫av在线播放一区| 国产一区二区电影| 精品国产毛片一区二区无码| 色综合视频一区二区三区| 免费看AV毛片一区二区三区| 国产精品亚洲一区二区麻豆 | 国产一区二区三区在线观看精品| 国内精品视频一区二区三区 | 在线观看国产区亚洲一区成人| 国产一区二区三区在线电影| 国产精品盗摄一区二区在线| 国产一区二区三区美女| 乱色熟女综合一区二区三区| 免费无码AV一区二区| 亚洲成人一区二区| 国产伦精品一区三区视频| 国产人妖视频一区二区破除| 视频一区在线免费观看| 中文字幕一区在线| 亚洲av午夜福利精品一区人妖| 无码精品人妻一区二区三区人妻斩 | 精品一区二区三区AV天堂| 国产天堂在线一区二区三区 | 国产主播在线一区| 女人18毛片a级毛片一区二区| 国产在线一区二区杨幂| 成人国产一区二区三区| 亚洲一区二区在线视频| 国模无码一区二区三区| 国产精品一区二区av不卡| 国产在线精品一区二区不卡| 亚洲午夜电影一区二区三区|