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

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

代寫 2XC3、代做 Python 設計編程

時間:2024-04-14  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Computer Science 2XC3: Final Project
This project will include a final report and your code. Your final report will have the following. You will
be submitting .py (NOT *.ipynb) files for this final project.
• Title page
• Table of Content
• Table of Figures
• An executive summary highlighting some of the main takeaways of your experiments/analysis
• An appendix explaining to the TA how to navigate your code.
For each experiment, include a clear section in your lab report which pertains to that experiment. The report should look professional and readable.
PLEASE NOTE: This is the complete Part I and II. Complete Parts 1 – 5 in group. Part 6 needs to be completed individual. Please refer to the plagiarism policy in Syllabus.
Part 1 : Single source shortest path algorithms
Part 1.1: In this part you will implement variation of Dijkstra’s algorithm. It is a popular shortest path algorithm where the current known shortest path to each node is updated once new path is identified. This updating is called relaxing and in a graph with 𝑛 nodes it can occur at most 𝑛 − 1 times. In this part implement a function dijkstra (graph, source, k) which takes the graph and source as an input and where each node can be relaxed on only k times where, 0 < 𝑘 < Ү**; − 1. This function returns a distance and path dictionary which maps a node (which is an integer) to the distance and the path (sequence of nodes).
Part 1.2: Consider the same restriction as previous and implement a variation of Bellman Ford’s algorithm. This means implement a function bellman_ford(graph, source, k) which take the graph and source as an input and finds the path where each node can be relaxed only k times, where, 0 < 𝑘 < Ү**; − 1. This function also returns a distance and path dictionary which maps a node (which is an integer) to the distance and the path (sequence of nodes).
Part 1.3: Design an experiment to analyze the performance of functions written in Part 1.1 and 1.2. You should consider factors like graph size, graph. density and value of k, that impact the algorithm performance in terms of its accuracy, time and space complexity.
Part 2: All-pair shortest path algorithm
Dijkstra’s and Bellman Ford’s are single source shortest path algorithms. However, many times we are faced with problems that require us to solve shortest path between all pairs. This means that the algorithm needs to find the shortest path from every possible source to every possible destination. For every pair of vertices u and v, we want to compute shortest path 𝑑𝑖w**4;w**5;𝑎𝑛𝑐Ү**;(w**6;, w**7;) and the second-to-last vertex on the shortest path w**1;w**3;Ү**;w**7;𝑖w**0;w**6;w**4;(w**6;, w**7;). How would you design an all-pair shortest path algorithm for both positive edge weights and negative edge weights? Implement a function that can address this. Dijkstra has complexity Ɵ(𝐸 + 𝑉𝑙w**0;𝑔𝑉), or Ɵ (𝑉2) if the graph is dense and Bellman-Ford has complexity Ɵ (𝑉𝐸) , or Ɵ(𝑉3) if the graph is dense. Knowing this, what would you conclude the complexity of your two algorithms to be for dense graphs? Explain your conclusion in your report. You do not need to verify this empirically.
      
Part 3: A* algorithm
In this part, you will analyze and experiment with a modification of Dijkstra’s algorithm called the A* (we will cover this algorithm in next lecture, but you are free to do your own research if you want to get started on it). The algorithm essentially, is an “informed” search algorithm or “best-first search”, and is helpful to find best path between two given nodes. Best path can be defined by shortest path, best time, or least cost. The most important feature of A* is a heuristic function that can control it’s behavior.
Part 3.1: Write a function A_Star (graph, source, destination, heuristic) which takes in a directed weighted graph, a sources node, a destination node , and a heuristic “function”. Assume h is a dictionary which takes in a node (an integer), and returns a float. Your method should return a 2-tuple where the first element is a predecessor dictionary, and the second element is the shortest path the algorithm determines from source to destination. This implementation should be using priority queue.
Part 3.2: In your report explain the following:
• What issues with Dijkstra’s algorithm is A* trying to address?
• How would you empirically test Dijkstra’s vs A*?
• If you generated an arbitrary heuristic function (like randomly generating weights), how would
Dijkstra’s algorithm compare to A*?
• What applications would you use A* instead of Dijkstra’s?
Part 4: Compare Shortest Path Algorithms
In this part, you will compare the performance of Dijkstra’s and A* algorithm. While generating random graphs can give some insights about how algorithms might be performing, not all algorithms can be assessed using randomly generated graphs, especially for A* algorithm where heuristic function is important. In this part you will compare the performance of the two algorithms on a real-world data set. Enclosed are a set of data files that contain data on London Subway system. The data describes the subway network with about 300 stations, and the lines represent the connections between them. Represent each station as a node in a graph, and the edge between stations should exists if two stations are connected. To find weights of different edges, you can use latitude and longitude for each station to find the distance travelled between the two stations This distance can serve as the weight for a given edge. Finally, to compute the heuristic function, you can use the physical direct distance (NOT the driving distance) between the source and a given station. Therefore, you can create a hashmap or a function, which serves as a heuristic function for A*, takes the input as a given station and returns the distance between source and the given station.
Once you have generated the weighted graph and the heuristic function, use it as an input to both A* and Dijkstra’s algorithm to compare their performance. It might be useful to check all pairs shortest paths, and compute the time taken by each algorithm for all combination of stations. Using the experiment design, answer the following questions:
• When does A* outperform Dijkstra? When are they comparable? Explain your observation why you might be seeing these results.
• What do you observe about stations which are 1) on the same lines, 2) on the adjacent lines, and 3) on the line which require several transfers?
• Using the “line” information provided in the dataset, compute how many lines the shortest path uses in your results/discussion?
    
 Figure 1: London Subway Map
Part 5: Organize your code as per UML diagram
Organize you code as per the below Unified Modelling Language (UML) diagram in Figure 2. Furthermore, consider the points listed below and discuss these points in a section labelled Part 4 in your report (where appropriate).
• Instead of re-writing A* algorithm for this part, treat the class from UML as an “adapter”.
• Discuss what design principles and patterns are being used in the diagram.
• The UML is limited in the sense that graph nodes are represented by the integers. How would you
alter the UML diagram to accommodate various needs such as nodes being represented Strings or carrying more information than their names.? Explain how you would change the design in Figure 2 to be robust to these potential changes.
• Discuss what other types of graphs we could have implement “Graph”. What other implementations exist?
 
 Figure 2: UML Diagram
Part 6: Unknown Algorithm (To work on Individually)
In the code posted with this document, you will find a w**6;𝑛𝑘𝑛w**0;w**8;𝑛() function. It takes a graph as input. Do some reverse engineering. Try to figure out what exactly this function is accomplishing. You should explore the possibility of testing it on graphs with negative edge weights (create some small graphs manually for this). Determine the complexity of this function by running some experiments as well as inspecting the code. Given what this code does, is the complexity surprising? Why or why not?
 Grade Breakup:
   Part 1: Single source shortest path algorithms Part 2: All-pair shortest path algorithm
Part 3: A* algorithm
Part 4: Compare Shortest Path Algorithms
Part 5: Organize your code as per UML diagram Part 6: Unknown Algorithm
Group 25 Group 15 Group 20 Group 30 Group 10
Individual 50
Part
Submission Type
Points
                     
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

















 

掃一掃在手機打開當前頁
  • 上一篇:代做CSE 470、djava/Python 編程
  • 下一篇:CS 2550代做、代寫SQL設計編程
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    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>
        欧美日韩妖精视频| 欧美成人一区二区| 国产视频在线观看一区二区| 国产一区二区三区视频在线观看| 亚洲欧美国产不卡| 欧美成人一品| 国产精品乱码一区二三区小蝌蚪| 国产精品久久久久影院亚瑟| 欧美日韩网址| 久久免费偷拍视频| 国产欧美va欧美不卡在线| 欧美国产三区| 国内精品免费午夜毛片| 欧美一区影院| 在线播放视频一区| 亚洲精品一二三| 国产精品videosex极品| 久久精品二区亚洲w码| 欧美国产在线观看| 国产精品亚洲综合久久| 欧美日韩精品免费观看视频完整| 国产亚洲一区在线播放| 亚洲一区二区三区四区在线观看| 亚洲国产天堂久久综合网| 亚洲欧美日韩爽爽影院| 99精品免费视频| 国产精品初高中精品久久| 国产精品色婷婷久久58| 国产精品嫩草99a| 一区二区三区高清视频在线观看| 久久美女艺术照精彩视频福利播放| 亚洲一区二区三区四区视频| 狠狠色综合一区二区| 久久久国产一区二区| 欧美性片在线观看| 欧美三级乱人伦电影| 欧美性色视频在线| 欧美日韩不卡一区| 欧美日韩亚洲一区二| 久久国产精品一区二区三区四区| 亚洲三级国产| 久久精品国产一区二区三| 欧美激情国产日韩精品一区18| 国产精品毛片va一区二区三区| 亚洲欧美经典视频| 国内精品久久久久影院 日本资源| 亚洲视频精选| 男女激情久久| 亚洲理伦电影| 欧美日产国产成人免费图片| 欧美尤物巨大精品爽| 国产精品久久久久av| 影音先锋中文字幕一区| 亚洲伦理在线免费看| 欧美护士18xxxxhd| 国产午夜亚洲精品理论片色戒| 亚洲在线播放| 一本大道av伊人久久综合| 久久女同精品一区二区| 一区二区在线观看视频在线观看| 牛牛精品成人免费视频| 亚洲一区中文字幕在线观看| 欧美成人午夜视频| 亚洲精品视频免费| 国产精品视频福利| 亚洲欧美一区二区激情| 欧美亚洲成人网| 久久嫩草精品久久久久| 亚洲电影毛片| 老牛影视一区二区三区| 久久福利资源站| 国产精品多人| 91久久国产精品91久久性色| 欧美成人免费va影院高清| 亚洲毛片在线免费观看| 亚洲一区欧美激情| 久久一区免费| 亚洲午夜一区二区三区| 日韩亚洲欧美一区二区三区| 在线中文字幕一区| 欧美在线一区二区三区| 亚洲欧洲一区| 久久精品国产99| 中文在线不卡视频| 亚洲激情欧美激情| 欧美在线网址| 国产精品xnxxcom| 国产午夜一区二区三区| 久久婷婷麻豆| 精品动漫3d一区二区三区免费版| 欧美怡红院视频一区二区三区| 久久久噜噜噜久噜久久| 性欧美暴力猛交另类hd| 欧美精品1区2区3区| 亚洲欧美久久| 美女视频网站黄色亚洲| 欧美精品久久久久久久免费观看| 国产一二三精品| 宅男噜噜噜66一区二区| 欧美成人中文字幕在线| 狠狠色噜噜狠狠狠狠色吗综合| 久久综合九色九九| 精品99一区二区| 国内精品国语自产拍在线观看| 一区二区三区在线免费播放| 久久久亚洲精品一区二区三区| 亚洲日本中文字幕免费在线不卡| 在线观看日韩www视频免费| 亚洲精品人人| 伊人夜夜躁av伊人久久| 免费成人高清视频| 国产欧美日韩在线播放| 国产精品免费aⅴ片在线观看| 亚洲国产成人porn| 亚洲综合三区| 久久国产精品99精品国产| 久久黄色级2电影| 亚洲图片在线观看| 国产精品美女诱惑| 久久久噜噜噜久久狠狠50岁| 国产午夜亚洲精品不卡| 亚洲福利视频一区| 激情成人亚洲| 亚洲一区国产一区| 乱中年女人伦av一区二区| 免费视频一区二区三区在线观看| 免费人成网站在线观看欧美高清| 欧美性久久久| 亚洲国产视频一区二区| 欧美黄色一区二区| 亚洲美女av黄| 亚洲一区在线免费| 一区二区三区在线免费视频| 韩国av一区二区| 国产麻豆日韩欧美久久| 国产精品久久久久久久久动漫| 午夜精品久久久久久久99水蜜桃| 黄网站色欧美视频| 欧美喷水视频| 国产欧美日韩麻豆91| 永久域名在线精品| 国产美女诱惑一区二区| 欧美成人黑人xx视频免费观看| 亚洲专区国产精品| 国产精品亚洲不卡a| 久久综合免费视频影院| 午夜视频精品| 久久国产手机看片| 欧美有码在线视频| 日韩视频一区二区三区在线播放免费观看| 激情小说亚洲一区| 亚洲欧洲在线观看| 欧美日韩综合网| 亚洲无吗在线| 国产美女精品视频免费观看| 国产精品入口66mio| 艳女tv在线观看国产一区| 久久久久久亚洲精品杨幂换脸| 国产精品入口| 欧美a级在线| 裸体女人亚洲精品一区| 99国产一区二区三精品乱码| 欧美在线播放| 亚洲国产综合在线|