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

        代寫comp2123、代做Java/C++程序語言
        代寫comp2123、代做Java/C++程序語言

        時間:2025-03-29  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



        comp2123 Assignment 2 s1 2025
        This assignment is due on April 8 and should be submitted on Gradescope.
        All submitted work must be done individually without consulting someone else’s
        solutions in accordance with the University’s “Academic Dishonesty and Plagia rism” policies.
        Before you read any further, go to the last page of this document and read
        the Written Assignment Guidelines section.
        Problem 1. (20 points)
        Let T be a binary tree holding n distinct integer keys. A node u ∈ T is said to
        be lucky if its key is smaller than its parent’s (if it has a parent) and its children’s
        key (if it has any children).
        Consider the following algorithm that tries to find a lucky node:
        Algorithm 1
        1: function FindLucky(T, u)
        2: if u.le f t = Null and u.le f t.key < u.key then
        3: return FindLucky(T, u.left)
        4: if u.right = Null and u.right.key < u.key then
        5: return FindLucky(T, u.right)
        6: if u.parent = Null and u.parent.key < u.key then
        7: return FindLucky(T, u.parent)
        8: return u
        When the input u is lucky then clearly f indlucky(T, u) returns a lucky node,
        namely, u itself. But is it true that for all v ∈ T the function f indlucky(T, v)
        always returns a lucky node?
        Your task is to
        Prove that for all v ∈ T the function f indlucky(T, v) returns a lucky node
        or provide a counter example where it fails to return the correct answer.
        a)
        b) Provide a tight time complexity analysis of the algorithm when T is complete.
        Problem 2. (40 points)
        Bob Proverra is an apple farmer who maintains an orchard of apple trees. Unfor tunately for Bob, squirrels and birds have begun to infest his trees and eat all the
        produce. To make matters worse, a disease has begun to strike some branches
        of the trees, meaning they will no longer produce apples in the following year.
        Through advanced cameras on the farm, Bob can produce high-quality im ages of the trees, which show him the number of apples on each branch, and
        any sightings of squirrels or birds, as well as if any branches are diseased.
        Using these images, your task is to design an algorithm to count the number
        of apples on each tree and then rank the trees from healthiest to least healthy.
        Keep note of the following criteria:
        1
        comp2123 Assignment 2 s1 2025
        • If a branch contains a squirrel, any apples on that branch or higher branches
        connected to it should only count for half, since the squirrel may eat some
        (this effect compounds if there are more squirrels higher up in the tree).
        • If a branch contains a bird, all apples in that tree count for 3
        4
        , since the bird
        may eat some (this effect does not compound).
        • The more diseased branches are sighted, the less healthy the tree is rated.
        If only part of the branch has visible disease, the rest of the branch is still
        considered to be diseased (from the point the disease is visible, until the
        leaves of the tree).
        Describe an efficient algorithm to count apples in Bob’s orchard, prove the
        correctness and analyse the time complexity.
        a)
        Describe an efficient algorithm to order trees in Bob’s orchard by healthi ness. Note that that the number of apples a tree produced doesn’t affect
        its health rating.
        b)
        Consider if Bob was to prune all of the diseased branches and separate
        them from his crop. How would this affect his crop yield? Modify your
        algorithm to consider this, giving Bob an idea of how much produce he can
        expect to grow in the following year (assuming no new branches grow).
        c)
        Problem 3. (40 points)
        Let T be a binary tree whose nodes store distinct numerical values. Consider the
        following pair of operations on binary trees:
        • Rotate an arbitrary node upward.
        • Swap the left and right subtrees of an arbitrary node.
        In both of these operations, some, all, or none of the subtrees A, B, and C
        could be empty.
        2
        comp2123 Assignment 2 s1 2025
        Figure 1: rotate 2, rotate 2, swap 3, rotate 3, rotate 4, swap 3, rotate 2, swap 4
        Your task is to design an algorithm to transform an arbitrary n-node binary
        tree with distinct node values into a binary search tree, using at most O(n
        2
        )
        rotations and swaps.
        Your algorithm is not allowed to directly modify parent or child pointers,
        create new nodes, or delete old nodes; the only way to modify the tree is through
        rotations and swaps.
        On the other hand, you may compute anything you like for free, as long as
        that computation does not modify the tree; the running time of your algorithm
        is defined to be the number of rotations and swaps that it performs.
        a) describe your algorithm in plain English,
        b) prove it correctness, and
        c) analyze its time complexity.
        3
        comp2123 Assignment 2 s1 2025
        Written Assignment Guidelines
        • Assignments should be typed and submitted as pdf (no pdf containing text
        as images, no handwriting).
        • Start by typing your student ID at the top of the first page of your submis sion. Do not type your name.
        • Submit only your answers to the questions. Do not copy the questions.
        • When asked to give a plain English description, describe your algorithm
        as you would to a friend over the phone, such that you completely and
        unambiguously describe your algorithm, including all the important (i.e.,
        non-trivial) details. It often helps to give a very short (1-2 sentence) de scription of the overall idea, then to describe each step in detail. At the end
        you can also include pseudocode, but this is optional.
        • In particular, when designing an algorithm or data structure, it might help
        you (and us) if you briefly describe your general idea, and after that you
        might want to develop and elaborate on details. If we don’t see/under stand your general idea, we cannot give you marks for it.
        • Be careful with giving multiple or alternative answers. If you give multiple
        answers, then we will give you marks only for "your worst answer", as this
        indicates how well you understood the question.
        • Some of the questions are very easy (with the help of the slides or book).
        You can use the material presented in the lecture or book without proving
        it. You do not need to write more than necessary (see comment above).
        • When giving answers to questions, always prove/explain/motivate your
        answers.
        • When giving an algorithm as an answer, the algorithm does not have to be
        given as (pseudo-)code.
        • If you do give (pseudo-)code, then you still have to explain your code and
        your ideas in plain English.
        • Unless otherwise stated, we always ask about worst-case analysis, worst case running times, etc.
        • As done in the lecture, and as it is typical for an algorithms course, we
        are interested in the most efficient algorithms and data structures, though
        slower solutions may receive partial marks.
        • If you use further resources (books, scientific papers, the internet,...) to
        formulate your answers, then add references to your sources and explain it
        in your own words. Only citing a source doesn’t show your understanding
        and will thus get you very few (if any) marks. Copying from any source
        without reference is considered plagiarism.
        4

        請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

        掃一掃在手機(jī)打開當(dāng)前頁
      1. 上一篇:comp2123代做、代寫c/c++,Python設(shè)計編程
      2. 下一篇:菜鳥錢包強(qiáng)制下款怎么辦?如何聯(lián)系菜鳥錢包客服電話解決問題?
      3. 無相關(guān)信息
        合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
        急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
        出評 開團(tuán)工具
        出評 開團(tuán)工具
        挖掘機(jī)濾芯提升發(fā)動機(jī)性能
        挖掘機(jī)濾芯提升發(fā)動機(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. 短信驗證碼 酒店vi設(shè)計 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

        主站蜘蛛池模板: 中文字幕一区日韩精品| 无码中文人妻在线一区二区三区| 亚洲色婷婷一区二区三区| 国产伦一区二区三区免费| 国产精品一区二区久久精品无码| 无码成人一区二区| 伊人色综合一区二区三区 | 无码精品久久一区二区三区| 久久一区二区三区免费播放| 精品3d动漫视频一区在线观看| 亚洲综合一区二区精品久久| 国产探花在线精品一区二区| 一区二区三区四区在线观看视频 | 日本一区二区三区不卡视频中文字幕 | 伦精品一区二区三区视频| 极品少妇一区二区三区四区| 少妇人妻精品一区二区三区| 无码毛片一区二区三区中文字幕 | 精品人体无码一区二区三区| 国产精品盗摄一区二区在线| 亚洲色偷精品一区二区三区| 韩国福利影视一区二区三区| 老熟女高潮一区二区三区| 国产日韩高清一区二区三区| 国产伦精品一区二区三区免.费 | 国产精品制服丝袜一区| 好吊视频一区二区三区| 免费精品一区二区三区在线观看 | 福利一区在线视频| 国产精品一区二区久久国产| 国产在线无码视频一区二区三区| 中文字幕一区二区三区视频在线| 99久久精品国产高清一区二区| 久久精品国产一区二区电影| 国产在线精品一区二区不卡| 久久国产精品无码一区二区三区| 国产麻豆精品一区二区三区v视界| 无码国产精品一区二区免费式芒果| 亚洲AV日韩AV天堂一区二区三区| 久久精品无码一区二区无码| 中文字幕乱码一区久久麻豆樱花|