国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

代寫COMP528、代做 Python ,java 編程

時間:2023-11-25  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



In this assignment, you are asked to implement 2 algorithms for the Travelling Salesman
Problem. This document explains the operations in detail, so you do not need previous
knowledge. You are encouraged to start this as soon as possible. Historically, as the dead?line nears, the queue times on Barkla grow as more submissions are tested. You are also
encouraged to use your spare time in the labs to receive help, and clarify any queries you
have regarding the assignment.
1 The Travelling Salesman Problem (TSP)
The travelling salesman problem is a problem that seeks to answer the following question:
‘Given a list of vertices and the distances between each pair of vertices, what is the shortest
possible route that visits each vertex exactly once and returns to the origin vertex?’.
(a) A fully connected graph (b) The shortest route around all vertices
Figure 1: An example of the travelling salesman problem
The travelling salesman problem is an NP-hard problem, that meaning an exact solution
cannot be solved in polynomial time. However, there are polynomial solutions that can
be used which give an approximation of the shortest route between all vertices. In this
assignment you are asked to implement 2 of these.
1.1 Terminology
We will call each point on the graph the vertex. There are 6 vertices in Figure 1.
We will call each connection between vertices the edge. There are 15 edges in Figure 1.z
We will call two vertices connected if they have an edge between them.
The sequence of vertices that are visited is called the tour. The tour for Figure 1(b) is
(1, 3, 5, 6, 4, 2, 1). Note the tour always starts and ends at the origin vertex.
A partial tour is a tour that has not yet visited all the vertices.
202**024 1
COMP528
2 The solutions
2.1 Preparation of Solution
You are given a number of coordinate files with this format:
x, y
4.81263062**6921, 8.3**19930253777
2.**156816804616, 0.39593575612759
1.13649642931556, 2.2**59458630845
4.4**7**99682118, 2.9749120444**06
9.8****616851393, 9.107****070**
Figure 2: Format of a coord file
Each line is a coordinate for a vertex, with the x and y coordinate being separated by a
comma. You will need to convert this into a distance matrix.
0.000000 8.177698 7.099481 5.381919 5.0870**
8.177698 0.000000 2.577029 3.029315 11.138848
7.099481 2.577029 0.000000 3.426826 11.068045
5.381919 3.029315 3.426826 0.000000 8.139637
5.0870** 11.138848 11.068045 8.139637 0.000000
Figure 3: A distance matrix for Figure 2
To convert the coordinates to a distance matrix, you will need make use of the euclidean
distance formula.
d =
q (xi ? xj )
2 + (yi ? yj )
2
(1)
Figure 4: The euclidean distance formula
Where: d is the distance between 2 vertices vi and vj
, xi and yi are the coordinates of the
vertex vi
, and xj and yj are the coordinates of the vertex vj
.
202**024 2
COMP528
2.2 Cheapest Insertion
The cheapest insertion algorithm begins with two connected vertices in a partial tour. Each
step, it looks for a vertex that hasn’t been visited, and inserts it between two connected
vertices in the tour, such that the cost of inserting it between the two connected vertices is
minimal.
These steps can be followed to implement the cheapest insertion algorithm. Assume that the
indices i, j, k etc. are vertex labels, unless stated otherwise. In a tiebreak situation, always
pick the lowest index or indices.
1. Start off with a vertex vi
.
Figure 5: Step 1 of Cheapest Insertion
2. Find a vertex vj such that the dist(vi
, vj ) is minimal, and create a partial tour (vi
, vj
, vi)
Figure 6: Step 2 of Cheapest Insertion
3. Find two connected vertices (vn, vn+1), where n is a position in the partial tour, and
vk that has not been visited. Insert vk between vn and vn+1 such that dist(vn, vk) +
dist(vn+1, vk) ? dist(vn, vn+1) is minimal.
202**024 3
COMP528
Figure 7: Step 3 of Cheapest Insertion
4. Repeat step 3 until all vertices have been visited, and are in the tour.
Figure 8: Step 4 of Cheapest Insertion
Figure 9: Final step and tour of Cheapest Insertion. Tour Cost = 11
2.3 Farthest Insertion
The farthest insertion algorithm begins with two connected vertices in a partial tour. Each
step, it checks for the farthest vertex not visited from any vertex within the partial tour, and
then inserts it between two connected vertices in the partial tour where the cost of inserting
it between the two connected vertices is minimal.
202**024 4
COMP528
These steps can be followed to implement the farthest insertion algorithm. Assume that the
indices i, j, k etc. are vertex labels unless stated otherwise. In a tiebreak situation, always
pick the lowest index(indices).
1. Start off with a vertex vi
.
Figure 10: Step 1 of Farthest Insertion
2. Find a vertex vj such that dist(vi
, vj ) is maximal, and create a partial tour (vi
, vj
, vi).
Figure 11: Step 2 of Farthest Insertion
3. For each vertex vn in the partial tour, where n is a position in the partial tour, find an
unvisited vertex vk such that dist(vn, vk) is maximal.
Figure 12: Step 3 of Farthest Insertion
202**024 5
COMP528
4. Insert vk between two connected vertices in the partial tour vn and vn+1, where n is
a position in the partial tour, such that dist(vn, vk) + dist(vn+1, vk) ? dist(vn, vn+1) is
minimal.
Figure 13: Step 4 of Farthest Insertion
5. Repeat steps 3 and 4 until all vertices have been visited, and are in the tour.
Figure 14: Step 3(2) of Farthest Insertion
Figure 15: Step 4(2) of Farthest Insertion
202**024 6
COMP528
Figure 16: Final step and tour of Farthest Insertion. Tour Cost = 11
3 Running your programs
Your program should be able to be ran like so:
./<program name >. exe <c o o r d i n a t e f i l e n a m e > <o u t p u t fil e n am e >
Therefore, your program should accept a coordinate file, and an output file as arguments.
Note that C considers the first argument as the program executable.
Both implementations should read a coordinate file, run either cheapest insertion or farthest
insertion, and write the tour to the output file.
3.1 Provided Code
You are provided with code that can read the coordinate input from a file, and write the
final tour to a file. This is located in the file coordReader.c. You will need to include this
file when compiling your programs.
The function readNumOfCoords() takes a filename as a parameter and returns the number
of coordinates in the given file as an integer.
The function readCoords() takes the filename and the number of coordinates as parameters,
and returns the coordinates from a file and stores it in a two-dimensional array of doubles,
where coords[i ][0] is the x coordinate for the ith coordinate, and coords[i ][1] is the y
coordinate for the ith coordinate.
The function writeTourToFile() takes the tour, the tour length, and the output filename
as parameters, and writes the tour to the given file.
202**02**
University of Liverpool Continuous Assessment 1 COMP528
4 Instructions
? Implement a serial solution for the cheapest insertion and the farthest insertion. Name
these: cInsertion.c, fInsertion.c.
? Implement a parallel solution, using OpenMP, for the cheapest insertion and the far?thest insertion. Name these: ompcInsertion.c, ompfInsertion.c.
? Create a Makefile and call it ”Makefile” which performs as the list states below. With?out the Makefile, your code will not grade on CodeGrade (see more in section 5.1).
– make ci compiles cInsertion.c and coordReader.c into ci.exe with the GNU com?piler
– make fi compiles fInsertion.c and coordReader.c into fi.exe with the GNU compiler
– make comp compiles ompcInsertion.c and coordReader.c into comp.exe with the
GNU compiler
– make fomp compiles ompfInsertion.c and coordReader.c into fomp.exe with the
GNU compiler
– make icomp compiles ompcInsertion.c and coordReader.c into icomp.exe with
the Intel compiler
– make ifomp compiles ompfInsertion.c and coordReader.c into ifomp.exe the Intel
compiler.
? Test each of your parallel solutions using 1, 2, 4, 8, 16, and ** threads, recording
the time it takes to solve each one. Record the start time after you read from the
coordinates file, and the end time before you write to the output file. Do all testing
with the large data file.
? Plot a speedup plot with the speedup on the y-axis and the number of threads on the
x-axis for each parallel solution.
? Plot a parallel efficiency plot with parallel efficiency on the y-axis and the number of
threads on the x-axis for each parallel solution.
? Write a report that, for each solution, using no more than 1 page per solution,
describes: your serial version, and your parallelisation strategy
? In your report, include: the speedup and parallel efficiency plots, how you conducted
each measurement and calculation to plot these, and sreenshots of you compiling and
running your program. These do not contribute to the page limit
202**024 8
COMP528
? Your final submission should be uploaded onto CodeGrade. The files you
upload should be:
– Makefile
– cInsertion.c
– fInsertion.c
– ompcInsertion.c
– ompfInsertion.c
– report.pdf
5 Hints
You can also parallelise the conversion of the coordinates to the distance matrix.
When declaring arrays, it’s better to use dynamic memory allocation. You can do this by...
int ? o n e d a r ra y = ( int ?) malloc ( numOfElements ? s i z e o f ( int ) ) ;
For a 2-D array:
int ?? twod a r ra y = ( int ??) malloc ( numOfElements ? s i z e o f ( int ? ) ) ;
for ( int i = 0 ; i < numOfElements ; i ++){
twod a r ra y [ i ] = ( int ?) malloc ( numOfElements ? s i z e o f ( int ) ) ;
}
5.1 Makefile
You are instructed to use a MakeFile to compile the code in any way you like. An example
of how to use a MakeFile can be used here:
{make command } : { t a r g e t f i l e s }
{compile command}
c i : c I n s e r t i o n . c coordReader . c
gcc c I n s e r t i o n . c coordReader . c ?o c i . exe ?lm
Now, in the Linux environment, in the same directory as your Makefile, if you type ‘make ci‘,
the compile command is automatically executed. It is worth noting, the compile command
must be indented. The target files are the files that must be present for the make command
to execute.
202**024 9
COMP528
6 Marking scheme
1 Code that compiles without errors or warnings 15%
2 Same numerical results for test cases 20%
3 Speedup plot 10%
4 Parallel Efficiency Plot 10%
5 Parallel efficiency up to ** threads 15%
6 Speed of program 10%
11 Clean code and comments 10%
12 Report 10%
Table 1: Marking scheme
7 Deadline
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:4CCS1CS1代做、代寫c/c++,Python程序
  • 下一篇:代做CHC6089、代寫 java/c++程序語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    亚洲直播在线一区| 99精品国产高清一区二区| 欧美黄网免费在线观看| 久久久久久九九九| 春日野结衣av| 岛国一区二区三区高清视频| 日韩精品不卡| 91久久久久久久一区二区| 国产精品嫩草视频| 性色av香蕉一区二区| 国产欧美一区二区三区在线看| 99在线高清视频在线播放| 国产精品成人av在线| 欧美精品一区在线发布| 国产在线视频在线| 久久国产精品偷| 欧洲成人一区二区| 免费看国产一级片| 91精品国产色综合| 色偷偷88888欧美精品久久久| 精品国产aⅴ麻豆| 男人天堂手机在线视频| 国产不卡av在线| 久久99热精品| 欧美亚洲视频一区| 国产激情综合五月久久| 国产精品后入内射日本在线观看| 亚洲影院污污.| 午夜精品久久久久久久无码| 国产成人精品免费视频| 色欲色香天天天综合网www| 国产一区二区在线免费| 国产高潮呻吟久久久| 精品国偷自产一区二区三区| 日韩偷拍一区二区| 久久久视频免费观看| 亚洲永久免费观看| 成人免费在线小视频| 麻豆成人在线看| 欧美国产一二三区| 久久精品国产电影| 手机成人av在线| 91精品视频免费观看| 亚洲精品日韩激情在线电影| 成人精品一区二区三区电影黑人| 国产精品成人aaaaa网站| 国内精品久久久久久中文字幕| www.xxxx精品| 青草网在线观看| 亚洲制服欧美久久| 国产伦精品一区二区三区照片 | 国内精品久久影院| 日韩综合视频在线观看| 青青视频免费在线| 久久综合伊人77777尤物| 激情伦成人综合小说| 国产精品激情av电影在线观看| 男人的天堂99| 国产精品国产精品国产专区不卡 | 欧美精品成人一区二区在线观看| 久久久久久午夜| 欧美精品一区二区三区免费播放| 日韩亚洲精品视频| 欧美日韩一区二区三区在线观看免| 国产成人久久久精品一区| 欧美精品二区三区四区免费看视频| 国产精品久久久久久超碰| 国产欧美一区二区三区视频| 中文字幕综合在线观看| 国产精品1区2区在线观看| 亚洲a成v人在线观看| 国产av天堂无码一区二区三区| 日韩日韩日韩日韩日韩| 日韩在线欧美在线| 国语自产精品视频在免费| 久久亚洲精品成人| 成人免费福利在线| 亚洲欧洲三级| 91精品久久久久久久久久久久久久| 欧美一区二区三区在线免费观看| 日韩在线观看免费网站| 黄色一级大片在线观看| 一区二区在线高清视频| 久久99蜜桃综合影院免费观看| 欧美牲交a欧美牲交aⅴ免费下载 | 天天干天天操天天干天天操| 116极品美女午夜一级| 欧美一区二区.| 国产精品大片wwwwww| 麻豆av免费在线| 亚洲乱码中文字幕久久孕妇黑人| 久久久久一本一区二区青青蜜月| 国内精品久久国产| 亚洲欧美丝袜| 久久精品国产v日韩v亚洲 | 韩国精品久久久999| 亚洲中文字幕久久精品无码喷水| 久久综合中文色婷婷| 欧美亚洲另类在线| 伊人天天久久大香线蕉av色| 日日骚av一区| 国产日产欧美a一级在线| 欧美一级视频在线播放| 国产精品成人国产乱一区| 91精品国产综合久久久久久久久| 日韩三级在线播放| 欧美日韩aaaa| www.亚洲免费视频| 日韩高清专区| 中文字幕av导航| 久久久久久一区二区三区| 日本高清视频一区| 在线免费一区| 国产精品视频大全| 国产精品777| 国产欧美日韩一区| 欧美亚洲视频一区二区| 亚洲啊啊啊啊啊| 九九热精品在线| 国产精品青青草| 国产mv久久久| 91精品国产高清久久久久久久久| 国产一区二区三区黄| 日韩精品―中文字幕| 伊人久久av导航| 久久黄色av网站| 91精品国产91久久久久久| 欧美一区少妇| 国产精品久久久久久久久久久新郎| av观看免费在线| 狠狠爱一区二区三区| 亚洲在线免费视频| 国产精品成人一区二区三区| 久久久福利视频| www.久久草| 国产伦精品一区二区三毛| 男人的天堂成人| 欧美在线视频a| 日韩视频 中文字幕| 国产精品色视频| 久久色在线播放| 日日骚久久av| 九九九久久久| 国产成人jvid在线播放| 久久综合伊人77777麻豆| 99在线看视频| 国产中文字幕视频在线观看| 日韩精品久久一区二区| 日本免费不卡一区二区| 性欧美大战久久久久久久| 亚洲一区二区三区视频| 亚洲综合视频一区| 亚洲一区二区三区四区中文| 一区二区在线观| 欧美激情精品久久久久| 国产不卡一区二区视频| 国产成人黄色片| 日韩在线视频网站| 久久精品成人欧美大片古装| 久久国产精品免费观看| 91国产美女在线观看| 91国在线精品国内播放| 久久婷婷五月综合色国产香蕉| 8090成年在线看片午夜| 久久精品国产精品亚洲精品色 | 国产国语videosex另类| 国产二区视频在线播放| 日韩视频免费观看| 久久精品国产一区二区三区| 国产成人精品无码播放| 国产精品美女主播| 欧美精品一区二区三区国产精品| 国产精品成人av在线| 色综合老司机第九色激情| 欧美激情亚洲精品| 久久久久成人精品| 亚洲高清123| 午夜精品在线视频| 中文字幕在线中文| 色狠狠久久av五月综合|| 欧洲午夜精品久久久| 欧美综合在线观看视频| 国内精品小视频在线观看| 国产又黄又猛视频| 91精品视频播放| 久久久精品欧美| 精品国产aⅴ麻豆| 午夜免费福利小电影| 欧美亚洲另类视频| 国产有码在线一区二区视频| 超碰97人人人人人蜜桃| 久久99国产精品99久久| 国产精品成人免费电影| 性亚洲最疯狂xxxx高清| 韩国欧美亚洲国产| 日韩免费不卡av| 国产乱子伦精品视频| 久久资源av| 国产精品区一区二区三含羞草| 亚洲午夜久久久影院伊人|