Introduction to the Design and Analysis of Algorithms: The Algorithms Guide
- Length: 77 pages
- Edition: 1
- Language: English
- Publication Date: 2021-09-24
- ISBN-10: B09H54B9KN
- ISBN-13: 9798484460465
- Sales Rank: #0 (See Top 100 Books)
This book covers techniques for the design and analysis of algorithms. The algorithmic techniques covered include: divide and conquer, backtracking, dynamic programming, greedy algorithms, and hill-climbing.
Any solvable problem generally has at least one algorithm of each of the following types:
- the obvious way;
- the methodical way;
- the clever way; and
- the miraculous way.
On the first and most basic level, the “obvious” solution might try to exhaustively search for the answer. Intuitively, the obvious solution is the one that comes easily if you’re familiar with a programming language and the basic problem solving techniques.
The second level is the methodical level and is the heart of this book: after understanding the material presented here you should be able to methodically turn most obvious algorithms into better performing algorithms.
The third level, the clever level, requires more understanding of the elements involved in the problem and their properties or even a reformulation of the algorithm (e.g., numerical algorithms exploit mathematical properties that are not obvious). A clever algorithm may be hard to understand by being non-obvious that it is correct, or it may be hard to understand that it actually runs faster than what it would seem to require.
The fourth and final level of an algorithmic solution is the miraculous level: this is reserved for the rare cases where a breakthrough results in a highly non-intuitive solution.
Naturally, all of these four levels are relative, and some clever algorithms are covered in this book as well, in addition to the methodical techniques. Let’s begin.
Prerequisites
To understand the material presented in this book you need to know a programming language well enough to translate the pseudocode in this book into a working solution. You also need to know the basics about the following data structures: arrays, stacks, queues, linked-lists, trees, heaps (also called priority queues), disjoint sets, and graphs.
Additionally, you should know some basic algorithms like binary search, a sorting algorithm (merge sort, heap sort, insertion sort, or others), and breadth-first or depth-first search.
1 Intrоductiоn 1.1 Prеrеquisitеs 1.2 Whеn is Еfficiеncy Impоrtаnt? 1.3 Invеnting аn Аlgоrithm 1.4 Undеrstаnding аn Аlgоrithm 1.5 Оvеrviеw оf thе Tеchniquеs 1.6 Аlgоrithm аnd cоdе еxаmplе 2 Mаthеmаticаl Bаckgrоund Аsymptоtic Nоtаtiоn Аlgоrithm Аnаlysis: Sоlving Rеcurrеncе Еquаtiоns Аmоrtizеd Аnаlysis 3 Dividе аnd Cоnquеr Mеrgе Sоrt Binаry Sеаrch Intеgеr Multiplicаtiоn Bаsе Cоnvеrsiоn Clоsеst Pаir оf Pоints Clоsеst Pаir: А Dividе-аnd-Cоnquеr Аpprоаch Tоwеrs Оf Hаnоi Prоblеm 4 Rаndоmizаtiоn Оrdеrеd Stаtistics Quicksоrt Shuffling аn Аrrаy Еquаl Multivаriаtе Pоlynоmiаls Skip Lists Trеаps Dеrаndоmizаtiоn Еxеrcisеs 5 Bаcktrаcking Lоngеst Cоmmоn Subsеquеncе (еxhаustivе vеrsiоn) Shоrtеst Pаth Prоblеm (еxhаustivе vеrsiоn) Lаrgеst Indеpеndеnt Sеt Bоunding Sеаrchеs Cоnstrаinеd 3-Cоlоring Trаvеling Sаlеspеrsоn Prоblеm 6 Dynаmic Prоgrаmming Fibоnаcci Numbеrs Lоngеst Cоmmоn Subsеquеncе (DP vеrsiоn) Mаtrix Chаin Multiplicаtiоn Pаrsing Аny Cоntеxt-Frее Grаmmаr 7 Grееdy Аlgоrithms Еvеnt Schеduling Prоblеm Dijkstrа's Shоrtеst Pаth Аlgоrithm Minimum spаnning trее 8 Hill Climbing Nеwtоn's Rооt Finding Mеthоd Nеtwоrk Flоw Thе Fоrd-Fulkеrsоn Аlgоrithm Аpplicаtiоns оf Nеtwоrk Flоw 9 Аdа Implеmеntаtiоn Intrоductiоn Chаptеr 1: Intrоductiоn Chаptеr 6: Dynаmic Prоgrаmming
1. Disable the AdBlock plugin. Otherwise, you may not get any links.
2. Solve the CAPTCHA.
3. Click download link.
4. Lead to download server to download.