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

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

G6017編程代做代寫、MATLAB編程設計代做

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



Program Analysis G6017
Coursework 2
Due: XVAC Week 11 Thursday 21 December 2023 by 4PM
Format: Electronic submissions only by Canvas. You should write your
answers in the blanks in your answer sheet we have provided for
you and submit this answer sheet only. If you want to do your
work in a handwritten form, please print the answer sheet, fill it
properly, and then again scan it and upload the work as a single
PDF document. No paper copies of this submission will be
accepted.
Weighting 50.0 % of the coursework element for this module
25.0 % of the overall module mark
General instructions
1. Answer all of the questions.
2. Show your workings where appropriate. You can still get credit for a question
with an incorrect final answer if your workings show that you understood what
the problem was and how to solve it.
3. Do not copy the work of another student. Plagiarism is a very serious matter.
Discussion between students is to be encouraged – copying is an academic
disciplinary matter.
4. Check that you provide any working or information that the question asks for.
5. Hand your submission in on time. There are penalties for late submission.
6. If I cannot read your submission, I cannot mark it. It is your responsibility to
ensure that the presentation of your submission is appropriate for a University
student.
7. Do not forget to state units if they are relevant and apply to a question.
8. You should use any calculating aids your feel appropriate to help you solve
the problems including, although not limited to, calculators, spreadsheets
such as Excel and MATLAB.
9. If you do not understand the questions, you can get help at the workshop
sessions.
10.This assignment is marked out of a total of 100
Q1)
This question is concerned with the design and analysis of recursive algorithms.
You are given a problem statement as shown below. This problem is concerned
with performing calculations on a sequence 𝐴 of real numbers. Whilst this could
be done using a conventional loop-based approach, your answer must be
developed using a recursive algorithm. No marks will be given if your answer
uses loops.
𝐹𝑖𝑛𝑑𝐴w**7;Ү**;w**3;𝑎𝑔Ү**;𝐴𝑛𝑑𝑃w**3;w**0;𝑑w**6;𝑐w**5;(𝑎1, … , 𝑎𝑛) such that 𝑛 > 1
Input: A sequence of real values 𝐴 = (𝑎1, … , 𝑎𝑛
).
Output:, A 2-tuple (𝑎w**7;Ү**;w**3;𝑎𝑔Ү**;, w**1;w**3;w**0;𝑑w**6;𝑐w**5;) containing the average (𝑎w**7;Ү**;w**3;𝑎𝑔Ү**;) of all the
values and the product (w**1;w**3;w**0;𝑑w**6;𝑐w**5;) of all the values of the elements in 𝐴.
Your recursive algorithm should use a single recursive structure to find the
average and product values, and should not use two separate instances of a
recursive design. You should not employ any global variables.
(a) Produce a pseudo code design for a recursive algorithm to solve this
problem.
[5 marks]
(b) Draw a call-stack diagram to show the application of your recursive
algorithm when called using the sequence = (24, 8, −4, 6, −6, 3).
[5 marks]
(c) Write down the set of recurrence equations for your recursive algorithm.
Remember that one of the equations should correspond to the recursive
algorithm base case.
[4 marks]
(d) Using the recurrence equations you gave in your answer for part (c),
determine the running time complexity of your recursive algorithm.
[6 marks]
Q2)
A piece of code implementing a recursive algorithm has been produced, and a
student has analysed the recurrences. They have produced the recurrence
equations as shown below:
𝑇(𝑛) = 𝑇(𝑛 − 3) + 2(𝑛 − 3) + 𝑐1
𝑇(3) = 𝑐2
So the recursive algorithm features a base case when the size of the problem is
𝑛 = 3. The values of 𝑐1 and 𝑐2 are constants. You should assume the initial value
of 𝑛 (the size of the problem) is divisible by 3.
Determine the running time complexity of this recursive algorithm. To get the full
marks, your analysis should be as complete as possible. To get an idea of how to
perform a complete analysis, refer to the example recursive algorithm analysis on
Canvas. You can verify your analysis by modelling the recurrence equations in a
program like Excel or MATLAB. Your answer must include:
(a) Evidence of at least two cycles of substitutions to establish the running
time function 𝑇(𝑛).
(b) A clear statement of the generalisation of that pattern to 𝑘 iterations of
the recursive step.
(c) A statement of the number of iterations required to solve a problem of
size 𝑛.
(d) A statement of the final overall running time complexity that follows
from your previous algebra.
You may find it useful to know that the formula for a sum of an arithmetic
sequence of numbers of the form (1,2,3, … . 𝑘) is given by the formula:
∑ 𝑚
𝑚=𝑘
𝑚=1
=
𝑘(𝑘 + 1)
2
[20 marks]
Q3)
This question is concerned with dynamic programming.
A bottom up dynamic programming method is to be used to solve the subset sum
problem. The problem is to find the optimal sum of weighted requests from a set
of requests 𝐴 subject to a weight constraint W. The set of weighted requests 𝐴 =
{𝛼1, 𝛼2, 𝛼3, 𝛼4, 𝛼5, 𝛼6} can be summarised as following:
Request 𝒘(𝜶𝒊)
𝛼1 2
𝛼2 2
𝛼3 1
𝛼**
𝛼5 7
𝛼6 1
The maximum weight constraint is 13.
Using the following algorithm (reproduced from the notes on Canvas):
(a) Produce a table showing the space of the problem and all of the sub
problems, and use that table to determine the optimal subset sum of
requests when the weight constraint of 13 is applied. The table should
take the form of a matrix with 7 rows (values of 𝑖 in the range 0 to 6
inclusive) and 14 columns (values of w**8; in the range 0 to 13 inclusive).
[20 marks]
Q4)
In this question, we consider the operation of the Ford-Fulkerson algorithm on
the network shown overleaf:
Each edge is annotated with the current flow (initially zero) and the edge’s
capacity. In general, a flow of w**9; along an edge with capacity 𝑦 is shown as w**9;/𝑦.
(a) Show the residual graph that will be created from this network with the
given (empty) flow. In drawing a residual graph, to show a forward edge
with capacity w**9; and a backward edge with capacity 𝑦, annotate the original
edge w**9;⃗; 𝑦**; .
[4 marks]
(b) What is the bottleneck edge of the path (w**4;, w**7;1, w**7;3, w**7;5,w**5;) in the residual
graph you have given in answer to part (a) ?
[2 marks]
(c) Show the network with the flow (w**4;, w**7;1, w**7;3, w**7;5,w**5;) that results from
augmenting the flow based on the path of the residual graph you have
given in answer to part (a).
[3 marks]
(d) Show the residual graph for the network flow given in answer to part (c).
[4 marks]
(e) What is the bottleneck edge of the path (w**4;, w**7;3, w**7;4,w**5;) in the residual graph
you have given in answer to part (d) ?
[2 marks]
(f) Show the network with the flow that results from augmenting the flow
based on the path (w**4;, w**7;3, w**7;4,w**5;) of the residual graph you have given in
answer to part (d).
[3 marks]
(g) Show the residual graph for the network flow given in answer to part (f).
[4 marks]
(h) What is the bottleneck edge of the path (w**4;, w**7;2, w**7;3, w**7;1, w**7;4,w**5;) in the residual
graph you have given in answer to part (g) ?
[2 marks]
(i) Show the network with the flow that results from augmenting the flow
based on the path (w**4;, w**7;2, w**7;3, w**7;1, w**7;4,w**5;) of the residual graph you have given
in answer to part (g).
[3 marks]
(j) Show the residual graph for the network flow given in answer to part (i).
[4 marks]
(k) Show the final flow that the Ford-Fulkerson Algorithm finds for this
network, given that it proceeds to completion from the flow rates you have
given in your answer to part (i), and augments flow along the edges
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:COMP1038代做、C/C++程序語言代寫
  • 下一篇:代做COMP2046、代寫Memory Management
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    日韩免费在线免费观看| 国产精品一区二区三区在线播放 | 91国产视频在线播放| 国产精品久久久久久久久免费看| 日韩欧美在线观看强乱免费| 91福利视频在线观看| 一区二区免费在线观看| 国产日韩一区二区在线观看| 久青草国产97香蕉在线视频| 日韩美女中文字幕| 国产成人精品av| 色噜噜狠狠一区二区三区| 成人久久精品视频| 久久香蕉国产线看观看网| 欧美精品一区在线| 久久精品免费播放| 欧美怡红院视频一区二区三区| 久久久久久久久久久91| 日韩精品欧美专区| 日韩一区二区在线视频| 欧美综合77777色婷婷| 久久久国产精品免费| 黄色免费视频大全| 国产精品美女久久久久av超清 | 久久人人爽爽人人爽人人片av| 少妇大叫太大太粗太爽了a片小说| 91精品天堂| 亚洲国产欧美不卡在线观看| 久久久在线视频| 人人妻人人澡人人爽精品欧美一区 | 久久久亚洲精品视频| 欧美一级免费在线观看| 久久久久久久国产| 激情六月丁香婷婷| 国产精品久久久久久亚洲影视| 国产一区二区丝袜| 在线视频一区观看| 久久亚洲免费| 欧美精品在线一区| 精品国产综合| 91成人精品网站| 热久久这里只有| 国产精品毛片va一区二区三区| 国产视色精品亚洲一区二区| 一区二区三区视频在线播放| 久久影院理伦片| 欧美二区在线看| 一级日韩一区在线观看| 国产高清自拍一区| 欧美性久久久久| 一区二区三区四区不卡| 国产高清在线不卡| 欧美极品一区| 亚洲最大福利视频网站| 久久久久久有精品国产| 国产色视频一区| 性高潮久久久久久久久| 国产精品久久久久久久电影| 99久久无色码| 欧美高清中文字幕| 亚洲精品免费av| 国产精品免费成人| 国产精品91久久久| 免费高清在线观看免费| 亚洲综合在线小说| 久久精品一偷一偷国产| av动漫在线看| 激情深爱综合网| 少妇特黄a一区二区三区| 国产精品高潮粉嫩av| 久久久影视精品| 国产亚洲天堂网| 日韩理论片在线观看| 伊人久久青草| 国产精品美女久久久久av超清| 91久久久久久久久| 精品一区二区三区毛片| 日韩尤物视频| 在线一区亚洲| 国产精品丝袜白浆摸在线| av色综合网| 国产一区欧美二区三区| 日韩精品 欧美| 午夜一区二区三区| 欧美日韩国产二区| 久久精品视频一| 久久久久久a亚洲欧洲aⅴ| 国产伦精品一区二区三区在线 | 久久夜色精品国产欧美乱| 久久久久久a亚洲欧洲aⅴ| 国产伦精品一区二区三区四区视频 | 分分操这里只有精品| 黄色a级片免费| 日韩欧美视频一区二区| 一级黄色免费在线观看| 久久综合九色九九| 俺去了亚洲欧美日韩| 久久综合中文色婷婷| 国产精品香蕉视屏| 国产日韩一区二区在线| 欧美高清中文字幕| 日本一区二区在线视频观看| 亚洲日本一区二区三区在线不卡| 久久综合网hezyo| 国产精品视频白浆免费视频| 日韩一区二区av| 久久99精品久久久水蜜桃| 91九色极品视频| 97干在线视频| 91久久久亚洲精品| 91久久偷偷做嫩草影院| av一区二区在线看| 99视频国产精品免费观看| 国产美女久久精品| 国产女主播自拍| 国产免费裸体视频| 国产在线视频欧美| 国产亚洲精品网站| 国产又爽又黄的激情精品视频| 免费拍拍拍网站| 国内精品视频一区二区三区| 加勒比成人在线| 每日在线更新av| 国产亚洲精品久久久久久久| 国产四区在线观看| 国产精品一区久久| 99中文视频在线| 91成人综合网| 国产成人av在线| 日韩中文字幕精品| 久久久国产一区二区三区| 精品国产一区二区三区在线观看 | 久久久这里只有精品视频| 久久琪琪电影院| 久久国产精品精品国产色婷婷| 国产成人97精品免费看片| 久久久噜噜噜www成人网| www.午夜精品| 久久亚洲精品视频| 久久国产精品久久久| 亚洲一区二区高清视频| 视频一区不卡| 欧美日韩精品不卡| 国内精品国产三级国产在线专 | 久久精品视频在线播放| 国产精品久久久久久久av电影| 精品国产一区二区三区在线| 中文字幕日韩一区二区三区| 亚洲人成无码www久久久| 日韩av免费一区| 欧美影院久久久| 国产主播在线看| 高清无码视频直接看| 久久久这里只有精品视频| 日韩中文字幕av| 久久福利视频网| 亚洲爆乳无码专区| 欧美在线免费观看| 国产综合av一区二区三区| 超碰成人在线免费观看| 久久久久福利视频| 国产精品久久国产三级国电话系列| 欧美激情视频网站| 少妇人妻在线视频| 韩日精品中文字幕| av资源站久久亚洲| www国产精品视频| 欧美激情一级欧美精品| 日本一区免费看| 国产日韩精品入口| 久久露脸国产精品| 久久成人国产精品| 视频一区三区| 国产亚洲黄色片| 国产成人在线一区| 久久在线精品视频| 日本精品一区二区| 国产精品直播网红| 日韩视频在线观看免费| 一区二区三区四区视频在线| 欧美在线视频一区二区| 99热成人精品热久久66| 日韩色av导航| 丁香色欲久久久久久综合网| 麻豆亚洲一区| 久久久久久久久91| 亚洲一区二区三区av无码| 欧美精品一区二区性色a+v| 99国精产品一二二线| 国产精品久久久久久久久久尿| 色999日韩自偷自拍美女| 国产日韩一区二区在线| 国产成人女人毛片视频在线| 亚洲bt天天射| 国产男女免费视频| 国产精品三级在线| 日本中文字幕成人| 97人人爽人人喊人人模波多| 国产精品丝袜久久久久久消防器材| 亚洲精品国产一区|