5%
Algorithm Design: International Edition

Algorithm Design: International Edition

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

Algorithm Design introduces algorithms by looking at the real-world problems that motivate them. The book teaches students a range of design and analysis techniques for problems that arise in computing applications. The text encourages an understanding of the algorithm design process and an appreciation of the role of algorithms in the broader field of computer science. August 6, 2009 Author, Jon Kleinberg, was recently cited in the New York Times for his statistical analysis research in the Internet age.

Table of Contents:
Algorithm Design Jon Kleinberg and Eva Tardos Table of Contents 1 Introduction: Some Representative Problems       1.1 A First Problem: Stable Matching       1.2 Five Representative Problems             Solved Exercises           Excercises           Notes and Further Reading     2 Basics of Algorithms Analysis       2.1 Computational Tractability       2.2 Asymptotic Order of Growth Notation       2.3 Implementing the Stable Matching Algorithm using Lists and Arrays     2.4 A Survey of Common Running Times       2.5 A More Complex Data Structure: Priority Queues           Solved Exercises             Exercises             Notes and Further Reading     3 Graphs       3.1 Basic Definitions and Applications       3.2 Graph Connectivity and Graph Traversal       3.3 Implementing Graph Traversal using Queues and Stacks     3.4 Testing Bipartiteness: An Application of Breadth-First Search       3.5 Connectivity in Directed Graphs       3.6 Directed Acyclic Graphs and Topological Ordering             Solved Exercises             Exercises             Notes and Further Reading     4 Greedy Algorithms       4.1 Interval Scheduling: The Greedy Algorithm Stays Ahead       4.2 Scheduling to Minimize Lateness: An Exchange Argument     4.3 Optimal Caching: A More Complex Exchange Argument     4.4 Shortest Paths in a Graph       4.5 The Minimum Spanning Tree Problem       4.6 Implementing Kruskal's Algorithm: The Union-Find Data Structure     4.7 Clustering       4.8 Huffman Codes and the Problem of Data Compression    *4.9 Minimum-Cost Arborescences: A Multi-Phase Greedy Algorithm             Solved Exercises           Excercises           Notes and Further Reading   5 Divide and Conquer       5.1 A First Recurrence: The Mergesort Algorithm     5.2 Further Recurrence Relations     5.3 Counting Inversions     5.4 Finding the Closest Pair of Points     5.5 Integer Multiplication     5.6 Convolutions and The Fast Fourier Transform           Solved Exercises           Exercises           Notes and Further Reading     6 Dynamic Programming       6.1 Weighted Interval Scheduling: A Recursive Procedure       6.2 Weighted Interval Scheduling: Iterating over Sub-Problems       6.3 Segmented Least Squares: Multi-way Choices       6.4 Subset Sums and Knapsacks: Adding a Variable       6.5 RNA Secondary Structure: Dynamic Programming Over Intervals       6.6 Sequence Alignment       6.7 Sequence Alignment in Linear Space     6.8 Shortest Paths in a Graph       6.9 Shortest Paths and Distance Vector Protocols      *6.10 Negative Cycles in a Graph               Solved Exercises             Exercises             Notes and Further Reading     7 Network Flow       7.1 The Maximum Flow Problem and the Ford-Fulkerson Algorithm     7.2 Maximum Flows and Minimum Cuts in a Network       7.3 Choosing Good Augmenting Paths      *7.4 The Preflow-Push Maximum Flow Algorithm       7.5 A First Application: The Bipartite Matching Problem     7.6 Disjoint Paths in Directed and Undirected Graphs     7.7 Extensions to the Maximum Flow Problem       7.8 Survey Design       7.9 Airline Scheduling       7.10 Image Segmentation       7.11 Project Selection       7.12 Baseball Elimination      *7.13 A Further Direction: Adding Costs to the Matching Problem               Solved Exercises             Exercises             Notes and Further Reading   8 NP and Computational Intractability      8.1 Polynomial-Time Reductions      8.2 Reductions via "Gadgets": The Satisfiability Problem    8.3 Efficient Certification and the Definition of NP      8.4 NP-Complete Problems      8.5 Sequencing Problems      8.6 Partitioning Problems      8.7 Graph Coloring    8.8 Numerical Problems      8.9 Co-NP and the Asymmetry of NP    8.10 A Partial Taxonomy of Hard Problems           Solved Exercises         Exercises         Notes and Further Reading     9 PSPACE: A Class of Problems Beyond NP    9.1 PSPACE      9.2 Some Hard Problems in PSPACE      9.3 Solving Quantified Problems and Games in Polynomial Space    9.4 Solving the Planning Problem in Polynomial Space    9.5 Proving Problems PSPACE-Complete            Solved Exercises          Exercises          Notes and Further Reading   10 Extending the Limits of Tractability        10.1 Finding Small Vertex Covers        10.2 Solving NP-Hard Problem on Trees        10.3 Coloring a Set of Circular Arcs     *10.4 Tree Decompositions of Graphs       *10.5 Constructing a Tree Decomposition                Solved Exercises              Exercises              Notes and Further Reading     11 Approximation Algorithms        11.1 Greedy Algorithms and Bounds on the Optimum: A Load Balancing Problem      11.2 The Center Selection Problem        11.3 Set Cover: A General Greedy Heuristic        11.4 The Pricing Method: Vertex Cover        11.5 Maximization via the Pricing method: The Disjoint Paths Problem        11.6 Linear Programming and Rounding: An Application to Vertex Cover       *11.7 Load Balancing Revisited: A More Advanced LP Application        11.8 Arbitrarily Good Approximations: the Knapsack Problem                Solved Exercises              Exercises              Notes and Further Reading   12 Local Search        12.1 The Landscape of an Optimization Problem        12.2 The Metropolis Algorithm and Simulated Annealing        12.3 An Application of Local Search to Hopfield Neural Networks      12.4 Maximum Cut Approximation via Local Search        12.5 Choosing a Neighbor Relation       *12.6 Classification via Local Search        12.7 Best-Response Dynamics and Nash Equilibria              Solved Exercises              Exercises              Notes and Further Reading     13 Randomized Algorithms        13.1 A First Application: Contention Resolution        13.2 Finding the Global Minimum Cut        13.3 Random Variables and their Expectations        13.4 A Randomized Approximation Algorithm for MAX 3-SAT        13.5 Randomized Divide-and-Conquer: Median-Finding and Quicksort      13.6 Hashing: A Randomized Implementation of Dictionaries      13.7 Finding the Closest Pair of Points: A Randomized Approach      13.8 Randomized Caching      13.9 Chernoff Bounds      13.10 Load Balancing     *13.11 Packet Routing        13.12 Background: Some Basic Probability Definitions                Solved Exercises                Exercises                Notes and Further Reading   Epilogue: Algorithms that Run Forever  References Index


Best Sellers


Product Details
  • ISBN-13: 9780321372918
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Pearson
  • Edition: International ed
  • Language: English
  • Returnable: Y
  • Sub Title: International Edition
  • Width: 232 mm
  • ISBN-10: 0321372913
  • Publisher Date: 14 Jul 2005
  • Binding: Paperback
  • Height: 204 mm
  • No of Pages: 864
  • Spine Width: 30 mm
  • Weight: 1270 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Algorithm Design: International Edition
Pearson Education (US) -
Algorithm Design: International Edition
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Algorithm Design: International Edition

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals

    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA