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

        CHC5223代做、代寫Java編程語言

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



        CHC5223 Data Structures and Algorithms 202**024-2 
         1 of 6 
        Assignment 
        Value 100% of Coursework Resit 
        Individual work 
        Background 
        The subway system of a city is a network of underground or elevated trains that provide 
        rapid transit for passengers within the urban area. It typically consists of interconnected 
        lines or routes, each with designated stops or stations where passengers can board or 
        disembark. Subway systems are a vital component of urban transportation infrastructure, 
        offering a convenient and reliable mode of travel for commuters, tourists, and residents 
        alike. Subway stations are strategically located at key points throughout the city. 
        There are several terms used to describe the subway system: 
        • Station: is a designated node along a subway line where trains stop to allow 
        passengers to board or alight. 
        • Terminal Station: is the endpoint of a subway line or route where trains 
        begin or end their journeys. 
        • Interchange Station: is a crucial component of a subway system. It is a 
        station where passengers can transfer between different subway lines or 
        routes without exiting the transit system. 
        • Route: refers to the path that a subway train follows between two or more 
        stations. 
        • Line: is a set of interconnected routes that share a common designation and 
        usually serve a specific geographic area or corridor within a city. Each line is 
        identified by a unique name or number and is represented by a distinct color 
        on maps and signage. 
         
         CHC5223 Data Structures and Algorithms 202**024-2 
         2 of 6 
        General requirements 
        This coursework is to write a project to simulate a subway system according to 
        one subway map provided as an appendix file named Subway Map of 
        Chengdu(2019).png. The map depicts the operation of metro lines in Chengdu as 
        of the end of 2019. It provides the information the project needs. 
        The following figure is a thumbnail of the map. You’d better view the appendix 
        file directly for the high-resolution details. 
         
        Note: 
        You must create the corresponding graph based on the appendix file exactly. 
        • Node 
        You only need to consider the termination station and interchange station in the 
        map as nodes of the graph. 
        • Route 
        You only need to consider the colored lines in the map as a route of the graph, 
        please ignore the grey lines that mean the planning route not in service at that 
        time. 
        • Edge 
        The distance/cost between two nodes should be labeled as the number of 
        sections that exist in real. 
         
         CHC5223 Data Structures and Algorithms 202**024-2 
         3 of 6 
        Submission Format Requirements 
        When you have completed all tasks, you should be able to generate one 
        executable project, otherwise you will lose all marks. 
        The coursework submitted should be composed of two files: 
        • a report as a Microsoft Word document containing a description and explanation 
        of the encoding work. 
        ➢ filename format: Student ID_CHC5223_CW_Resit_Report.docx 
         
        • a .zip file containing the project source code files: 
        ➢ all the project’s source files, including those provided. 
        ➢ filename format: Student ID_CHC5223_ CW_Resit_Project.zip 
        If you do not submit the files according to the requirements, you may lose 10 
        marks for the coursework. 
         
         CHC5223 Data Structures and Algorithms 202**024-2 
         4 of 6 
        Requirements 
        Task 1 
        Please fill in the spreadsheet of the Excel file adjacency matrix.xlsx provided to 
        complete the adjacency matrix according to the map. 
        Each node should be named as the abbreviation of the first letters of the station 
        name shown on the map. For instance, the station Weijianian should be 
        instantiated as wjn. 
        Each edge should be labeled as the distance(cost) between two nodes. For 
        instance, the edge between Weijianian Station and North Railway Station should 
        be labeled as 2. If there is not an edge between two nodes or on itself, 
        distance/cost is “Infinite”. 
        Tip: There are several examples written for reference in the adjacency matrix. 
        10 marks 
         
        Task 2 
        Please create one project in the IDE based on the start code files provided. You 
        may modify the files to make the project executable upon completion. 
        5 marks 
         
        Task 3 
        The class Station is a class defined to represent subway stations that are the 
        terminal stations or interchange stations. The attribution ‘name’ represents the 
        name of the subway station. The attribution ‘line’ is an array list to record the line 
        numbers that the station is located at. The attribution ‘previous’ is used to record 
        the previous station in which the shortest path. The attribution ‘g_value’ is used to 
        record the g_value for the pathfinding algorithm. The attribution ‘previous’ is 
        used to record which node is the previous one during finding the shortest path. 
        The attribution ‘isTermination’ is used to represent the station as a termination 
        station(true) or interchange station(false). 
        You must write the corresponding code in the Station.java file based on the 
        notations. 
        10 marks 
        Explain the encoding work in the report rationally and explicitly. 
        10 marks 
         
        Task 4 
        The class subwayMap is used to generate the graph that represents the subway 
        map. The nodes of the graph are the termination stations and interchange CHC5223 Data Structures and Algorithms 202**024-2 
         5 of 6 
        stations of the subway. The edges of the graph are the lines between two 
        stations. The attribution ‘stations’ is used to record all stations that exist on the 
        subway map. The attribution ‘stationIndex’ represents the index of one station. 
        The attribution ‘stationMap’ is used to record the pairing key-value of the station 
        and station index. The attribution ‘size’ represents the number of stations. The 
        ‘adjacencyMatrix’ is a two-dimensional array to record all edges’ distance(cost). 
        You must write the corresponding codes in the subwayMap.java file based on the 
        notations. 
        10 marks 
        Explain the encoding work in the report rationally and explicitly. 
        10 marks 
         
        Task 5 
        The class Main is used to generate a graph that can represent the subway of 
        Chengdu at the end of 2019 according to the appendix file. 
        • In this class, you need to create all stations according to the appendix file. In 
        this class, you need to create an object of subwayMap to represent the 
        subway system of Chengdu according to the appendix file. 
        5 marks 
         
        Task 6 
        In the Main class, you need to implement the DFT(depth-first traversal) and 
        BFT(breadth-first traversal) algorithms to traverse all stations on the map. 
        • The implementations of DFT and BFT algorithms can display the process of the 
        traversal, including station name, station type, and subway line number information 
        in the sequence of the traversal. 
        • The station type should be displayed as ‘termination’ or ‘interchange’ according to 
        the station’s status. There is an example shown for reference in the following 
        screenshot. 
         
        • The start station must be the ‘Tianfu Square’ station. 
        10 marks CHC5223 Data Structures and Algorithms 202**024-2 
         6 of 6 
        Explain the encoding work in the report rationally and explicitly. 
         10 marks 
         
        Task 7 
        In the Main class, you need to implement Dijkstra’s algorithm to find the shortest 
        path from ‘East Chengdu Railway Station’ to ‘Taipingyuan’ station. 
        • The implementations of Dijkstra’s algorithms can display the information of the 
        pathfinding process, including the station name of each station in the closed set and 
        open set, the g_value of the station node, or other information that may be 
        necessary. There is an example shown for reference in the following screenshot. 
         
        • The implementation of Dijkstra’s algorithm can display the shortest path found. 
        There is an example shown for reference in the following screenshot. 
         
        Tip: You may modify the Station class to make each object of it can be comparable. 
        10 marks 
        Explain the encoding work in the report rationally and explicitly. 
        10 marks 
         請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp






         

        掃一掃在手機(jī)打開當(dāng)前頁
      1. 上一篇:BISM1201代做、代寫Python/Java程序語言
      2. 下一篇:代做Electric Vehicle Adoption Tools 、代寫Java程序設(shè)計(jì)
      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精品国产91久久久久久久| 国产在线精品一区二区不卡| 国产成人精品大尺度在线观看| 日韩一区二区在线观看视频| 尤物在线观看精品国产福利片 | 99久久久国产精品免费蜜臀| 国产精品水嫩水嫩| 亚洲日韩精品射精日| 中文国产成人久久精品小说| 国产精品爱搞视频网站| 成人国产精品一区二区网站| 日韩亚洲人成在线综合日本| 国产大陆亚洲精品国产| 老司机亚洲精品影院在线观看| 亚洲国产精品成人AV在线| 久久精品免费全国观看国产| 久久久精品久久久久三级| 精品无码一区二区三区在线| 91精品啪在线观看国产91九色| 一区二区三区国产精品| 久久久99精品免费观看| 久久精品国产亚洲| 久久精品国产99精品最新| 久久精品免费观看| 久久久精品一区二区三区| 久久夜色精品国产亚洲| 日韩一级精品视频在线观看| 国产三级精品三级在线专区1| 99re6在线精品免费观看| 国内精品99亚洲免费高清| 在线精品国产一区二区三区| 韩日美无码精品无码| 九九99精品久久久久久| 亚洲国产成人一区二区精品区| 久久精品免看国产| 99热精品国产麻豆| 久久精品国产AV一区二区三区|