- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Comparing Sorts Hard Problems Using divide-and-conquer we could design efficient algorithms for searching and sorting problems. Divide and conquer and recursion are very powerful techniques for algorithm design. Not all problems have efficient solutions! Towers of Hanoi One elegant application of recursion is to the Towers of Hanoi or Towers of Brahma puzzle attributed to édouard Lucas. There are three posts and sixty-four concentric disks shaped like a pyramid. The goal is to move the disks from one post to another, following these three rules: Towers of Hanoi Only one disk may be moved at a time. A disk may not be “set aside”. It may only be stacked on one of the three posts. A larger disk may never be placed on top of a smaller one. Towers of Hanoi If we label the posts as A, B, and C, we could express an algorithm to move a pile of disks from A to C, using B as temporary storage, as:Move disk from A to CMove disk from A to BMove disk from C to B Towers of Hanoi Let’s consider some easy cases – 1 diskMove disk from A to C 2 disksMove disk from A to BMove disk from A to CMove disk from B to C Towers of Hanoi 3 disksTo move the largest disk to C, we first need to move the two smaller disks out of the way. These two smaller disks form a pyramid of size 2, which we know how to solve.Move a tower of two from A to BMove one disk from A to CMove a tower of two from B to C Towers of Hanoi Algorithm: move n-disk tower from source to destination via resting placemove n-1 disk tower from source to resting placemove 1 disk tower from source to destinationmove n-1 disk tower from resting place to destination What should the base case be? Eventually we will be moving a tower of size 1, which can be moved directly without needing a recursive call. Towers of Hanoi In moveTower, n is the size of the tower (integer), and source, dest, and temp are the three posts, represented by “A”, “B”, and “C”. def moveTower(n, source, dest, temp): if n == 1: prin
您可能关注的文档
- japplcryst.pdf.PDF
- JavninatjeajpoOperativnomprogramuregionalnih.doc
- javnipoziv.doc
- Jedinstvenimatinibroj-SIPA.doc
- JerryFlynn103-1910CapistranoDriveKelowna,B.C.,V1V.doc
- JETFusionexperiment36kVenhancementstudies-IPST.PDF
- JetImpingementCharacteristicsfromaPulsedRadialJet.PDF
- Jobdescription-ISMU.doc
- JobHazardAnalysis-TrailReconstruction-Wilderness.net.doc
- JobInterviewFirstImpressions.doc
- Lecture8FlybackExampleAnnouncements.PDF
- Lecture8Least-normsolutionsofundeterminedequations.PDF
- LectureNotesforSection5.7-MadisonAreaTechnical.doc
- LEDDriverSolutions-Element14.ppt
- LEED,LeadershipinEnergyandEnvironmentalDesign.doc
- LegLengthInequalityReviewPaper-WhiteRoseResearch.doc
- Lekce_8_asociace.doc-ISMU.doc
- LeLionnaisLipoFirstandSecondManifestos.doc
- LengthScaleofImperfectionsLineDefectsDislocations.PDF
- Lesson10.ppt.ppt
文档评论(0)