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

        CS111 編程代做、代寫 C++程序語言

        時間:2024-05-27  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



        Homework 1 -- Evolution of C++
        CS111 & EIE111 -- C++ Programming 2024 Spring

        March. 06, 2024
        The above picture, found on the Internet [1], shows the bicycle design evolving based on reasonable
        ideas. Some practical or reasonable ideas should also drive the migration from C to C++. This project is
        designed to explore the ideas of C++'s evolution.
        I. Overview
        C++ is designed to be more convenient than C, especially for programming scenarios involving
        abstraction. Here, the word "abstraction" relates to other jargon, such as Abstract Data Type (ADT),
        interface, encapsulation, data hiding, etc.
        This project is based on possible customer requests to use music player devices. Such a music player
        should satisfy the following conditions:
        The device stores songs, while each song's information includes
        title: name of the sone
        authors: who wrote the song
        actors: who performed the song
        year: when was it published
        media: the music content.
        Each song has a different id in the device to distinguish it from other songs.
        A song can be added to the device.
        A song can be deleted from the device.
        A song whose title contains certain words (as a substring) can be found.
        A song with a specific ID number can be found
        All the songs in the device can be played together individually.
        The memory(storage) for the device can be cloned or replaced by some backup clone.
        The storage of the device can be emptied.
        The number of songs on the devices can be known.
        A selected song can be copied (cloned)
        A selected song can be played
        A music player's interface exposes the above functions to a customer. However, quite some details of
        the device should be hidden from a customer because customers commonly do not care about technical
        details like the digital format of the media of a song or the memory structure of the device.
        In this project, we will write three different versions of programs using C and C++ to experience the
        advantages of C++ over C.
        II Preparation
        II.1 Prepare the coding software tools
        Be sure that some recommended compilers for C and C++ are installed on your computer and can be
        used at the command line. For more on the recommended compilers, see Appendix A. 2.
        Be sure that a tool for using makefile is available. See Appendix A.3 for how to install and use such
        a tool.
        II.2 Study the provided code.
        A file code.zip is provided. After unzipping it, its folder contains the following content:
        The Compile_and_run folder contains the makefile and running records (screen records of running
        executable files) for Windows or Mac.
        The Utility folder contains the code for generally helpful tools, not just for the Music Player
        program. It includes two groups of files.
        util.h and util.c define some general tools, including the definition of a struct Bytes
        describing a sequence of bytes. test_util.c is the testing file.
        util2.h and util2.cpp implement a Bytes class for a similar purpose. test_util2.cpp is the
        testing file.
        The folder SongPlayer_v1 contains a C program specifying the interface using a common C style.
        The folder SongPlayer_v2 contains a C program that specifies the interface using a class-like style.
        The folder SongPlayer_v3 contains a C++ program that specify the interface using the C++ way.
        III Tasks
        Download code.zip and unzip it into some folder containing the provided program files.
        There are 74 missing code parts, clearly marked as the 74 tasks. Do the tasks of providing the
        missing code. These tasks should be done following the task numbers, from small to large. More
        specifically, the tasks should be done in five sequential stages. Each stage should do the tasks in
        some different files, compile the files to generate the corresponding executable files, and do the
        debugging and testing. The following table lists each stage's program files and executable file
        names.
        stage
        number
        code files
        executable file (.exe or
        .out)
        1 util.c test_util
        2 song_player_v1.c test_v1
        3 song_player_v2.h, song_player_v2.c test_v2
        4 util2.h, util2.cpp test_util2
        5
        song_player_v3.h, song_player_v3.cpp,
        test_song_player_v3.cpp
        test_v3
        Write the report file pjt1_report.docx .
        Fill the Excel file pjt1_self_grading.xlsx .
        Write the answers for the questions in the file pjt1_QA.docx
        IV. Submission
        At most, three students can form a group to submit the homework together. Group members can
        share code and discuss the assignment sufficiently. But sharing between groups is not allowed.
        Each group should do the work independently.
        Only one member of the group should submit the homework files. Ensure the group members'
        names and class info (EIE/CS D1/D2/D3) are mentioned in the report file.
        It is perfectly ok to do the homework alone, i.e., a one-person group.
        Upload your files at the webpage address of this homework on Moodle, including:
        A .zip file made by compressing the whole coding folder. I.e., do all the programming in the
        folder unzipped from code.zip and zip this folder as a .zip file.
        pjt1_report.docx .
        pjt1_self_grading.xlsx .
        pjt1_QA.docx
        Deadline: 11 pm, Saturday, April 6, 2024
        Appendix
        A.1: Knowledge coverage in this assignment
        This project covers practicing a wide range of knowledge items of C and C++. Some knowledge items
        that may not be familiar to a person who has learned C include:
        1. Different ways of describing an interface (for program clients)
        as a group of public functions declared in a .h file (C style)
        as a struct which contains function pointers (C style)
        as a class (C++ style).
        3. Using C++ library container classes like string and vector .
        4. The special class members
        constructors (default constructor, copy constructor ...)
        the destructor
        5. Operator overloading: << [] += =
        6. Using namespace.
        7. Call C code in a C++ program.
        8. Exception handling
        9. Range-based for loop
        10. Design issues of classes, like deep copying.
        A.2: Some recommended compilers
        On Windows:
        gcc for C programs and g++ for C++ programs. MinGW provides these compilers.
        Or, cl (provided by Visual Studio Community) for C and C++.
        On Mac OS X and Linux
        gcc for C programs and g++ for C++ programs.
        A.3: How to use make and makefile
        The make program is usually available on Mac OS or Linux. A similar tool recommended for Windows is
        mingw**-make , provided after MinGW is installed. See [6] for more information on installing such a tool
        on Windows.
        A text file named makefile (case insensitive) records the needed rules for compiling a program. A rule
        usually has the form:
        goal: supporting file names
        a command to generate the target
        After make (or mingw**-make) is installed, we do the following to execute a compiling rule to generate a
        target
        - Step 1: at the command line, change the current folder to the one where the file named "makefile" is
        located.
        - Step 2: use the command:
        make goal
        The power of make is recursive. When executing a rule to reach or generate a goal, all the dependent
        files described in the rule need to be available; when one of the supporting files is missing, other rules
        for generating it will be executed...
        For example, for this project, the following commands are possible:
        make all : generate all the needed executable files depending on binary ( .o or .obj ) files.
        make util.o : generate the file util.o
        make test_util.exe : generate the file test_util.exe, and all the depending on binary files.
        請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp






         

        掃一掃在手機(jī)打開當(dāng)前頁
      1. 上一篇:長沙旅行社代辦越南簽證多少錢(怎么選擇好的旅行社)
      2. 下一篇:代寫 Linear Equation System Solver
      3. 無相關(guān)信息
        合肥生活資訊

        合肥圖文信息
        出評 開團(tuán)工具
        出評 開團(tuán)工具
        挖掘機(jī)濾芯提升發(fā)動機(jī)性能
        挖掘機(jī)濾芯提升發(fā)動機(jī)性能
        戴納斯帝壁掛爐全國售后服務(wù)電話24小時官網(wǎng)400(全國服務(wù)熱線)
        戴納斯帝壁掛爐全國售后服務(wù)電話24小時官網(wǎng)
        菲斯曼壁掛爐全國統(tǒng)一400售后維修服務(wù)電話24小時服務(wù)熱線
        菲斯曼壁掛爐全國統(tǒng)一400售后維修服務(wù)電話2
        美的熱水器售后服務(wù)技術(shù)咨詢電話全國24小時客服熱線
        美的熱水器售后服務(wù)技術(shù)咨詢電話全國24小時
        海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
        海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
        合肥機(jī)場巴士4號線
        合肥機(jī)場巴士4號線
        合肥機(jī)場巴士3號線
        合肥機(jī)場巴士3號線
      4. 上海廠房出租 短信驗證碼 酒店vi設(shè)計

        主站蜘蛛池模板: 亚洲国产综合无码一区二区二三区| 久久精品免费一区二区三区| 怡红院AV一区二区三区| 色欲AV蜜桃一区二区三| 无码aⅴ精品一区二区三区| 波多野结衣一区二区三区高清av| 国产伦精品一区二区三区免费下载 | 色一乱一伦一图一区二区精品| 99精品一区二区三区| 在线免费视频一区| 国产一区二区视频在线播放| 精品国产乱子伦一区二区三区| 春暖花开亚洲性无区一区二区| 中文国产成人精品久久一区| 国产精品一区二区久久| 精品一区二区三区视频| 亚洲国产精品乱码一区二区| 精品国产亚洲一区二区三区在线观看 | 麻豆一区二区三区精品视频| 亚洲Av永久无码精品一区二区 | 亚洲爆乳精品无码一区二区 | 伊人色综合网一区二区三区| 一区二区三区AV高清免费波多| 久久精品黄AA片一区二区三区| 国产伦精品一区二区三区无广告| 一区二区三区视频在线观看| 国产产一区二区三区久久毛片国语| 精品日产一区二区三区手机| 国产一区二区在线视频播放| 日韩免费无码视频一区二区三区 | 日韩一区二区电影| 精品国产天堂综合一区在线| 亚洲丰满熟女一区二区v| 国产观看精品一区二区三区 | 国产视频一区在线观看| 成人精品一区二区不卡视频| 人体内射精一区二区三区| 亚洲国产高清在线一区二区三区 | 免费一区二区无码东京热| 国产成人一区二区在线不卡| 一区二区不卡在线|