Computer Algorithms: Introduction to Design and Analysis

Computer Algorithms: Introduction to Design and Analysis

          
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

Drawing upon combined decades of teaching experience, Professors Sara Baase and Allen Van Gelder have extensively revised this best seller to make it the most current and accessible choice for any algorithms course. The new Third Edition features the addition of new topics and exercises and an increased emphasis on algorithm design techniques such as divide-and-conquer and greedy algorithms. It continues the tradition of solid mathematical analysis and clear writing style that made it so popular in previous editions.

Table of Contents:
1. Analyzing Algorithms and Problems: Principles and Examples. Introduction. Java as an Algorithm Language. A Usable Subset of Java. Organizer Classes. Java-Based Pseudocode Conventions. Mathematical Background. Sets, Tuples, and Relations. Algebra and Calculus Tools. Elements of Logic. Analyzing Algorithms and Problems. Correctness. Amount of Work Done. Average and Worst-Case Analysis. Space Usage. Simplicity. Optimality. Lower Bounds and the Complexity of Problems. Implementation and Programming. Classifying Functions by their Asymptotic Growth Rates. Definitions and Notation. How Important Is Asymptotic Order? Properties of O, Theta, and Omega. The Asymptotic Order of Commonly Occuring Sums. Searching an Ordered Array. Some Solutions. Worst-Case Analysis of Binary Search. Average-Behavior Analysis. Optimality. 2. Data Abstraction and Basic Data Structures. Introduction. ADT Specifications and Design Techniques. ADT Specifications. ADT Design Techniques. Elementary ADTs — Lists and Trees. Recursive ADTs. The List ADT. Binary Tree ADT. The Tree ADT. In-Tree ADT. Stacks and Queues. Stack ADT. Queue ADT. ADTs for Dynamic Sets. Priority Queue ADT. Union-Find ADT for Disjoint Sets. Dictionary ADT. 3. Recursion and Induction. Introduction. Recursive Procedures. Activation Frames and Recursive Procedure Calls. Hints for Recursion — Method 99. Wrappers for Recursive Procedures. What is a Proof? Induction Proofs. Induction Proof Schema. Induction Proof on a Recursive Procedure. Proving Correctness of Procedures. Definitions and Terminology. Elementary Control Structures. The Single-Assignment Paradigm. Procedures with Loops. Correctness Proofs as a Debugging Tool. Termination of Recursive Procedures. Correctness of Binary Search. Recurrence Equations. Recursion Trees. Divide-and-Conquer, General Case. Chip and Conquer, or be Conquered. Why Recursion Trees Work (*). 4. Sorting. Introduction. Insertion Sort. The Strategy. The Algorithm and Analysis. Lower Bounds on the Behavior of Certain Sorting Algorithms. Divide and Conquer. Quicksort. The Quicksort Strategy. The Partition Subroutine. Analysis of Quicksort. Improvements on the Basic Quicksort Algorithm. Merging Sorted Sequences. Worst Case. Optimality of Merge. Space Usage. Mergesort. Lower Bounds for Sorting by Comparison of Keys. Decision Trees for Sorting Algorithms. Lower Bound for Worst Case. Lower Bound for Average Behavior. Heapsort. Heaps. The Heapsort Strategy. FixHeap. Heap Construction. Implementation of a Heap and the Heapsort Algorithm. Accelerated Heapsort. Comparison of Four Sorting Methods. Shellsort. The Algorithm. Analysis and Remarks. Radix Sorting. Using Properties of the Keys. Radix Sort. 5. Selection and Adversary Arguments. Introduction. The Selection Problem. Lower Bounds. Adversary Arguments. Tournaments. Finding max and min. Finding the Second-Largest Key. Introduction. The Tournament Method. An Adversary Lower-Bound Argument. Implementation of the Tournament Method for Finding max and secondLargest. The Selection Problem. A Divide-and-Conquer Approach. A Linear-Time Selection Algorithm (*). Analysis of the Selection Algorithm (*). A Lower Bound for Finding the Median. Designing Against an Adversary. 6. Dynamic Sets and Searching. Introduction. Array Doubling. Amortized Time Analysis. Red-Black Trees. Binary Search Trees. Binary Tree Rotations. Red-Black Tree Definitions. Size and Depth of Red-Black Trees. Insertion into a Red-Black Tree. Deletion from a Red-Black Tree. Hashing. Closed Address Hashing. Open Address Hashing. Hash Functions. Dynamic Equivalence Relations and Union-Find Programs. Dynamic Equivalence Relations. Some Obvious Implementations. Union-Find Programs. Weighted Union. Path Compression. Analysis of wUnion and cFind (*). Applications. Priority Queues with a Decrease Key Operation. The Decrease Key Operation. Pairing Forests. 7. Graphs and Graph Traversals. Definitions and Representations. Some Examples. Elementary Graph Definitions. Graph Representations and Data Structures. Traversing Graphs. Overview of Depth-First Search. Overview of Breadth-First Search. Comparison of Depth-First and Breadth-First Searches. Depth-First Search and Recursion. Finding Connected Components with Depth-First Search. Depth-First Search Trees. A Generalized Depth-First Search Skeleton. Structure of Depth-First Search. Directed Acyclic Graphs and Topological Sort. Strongly Connected Components of a Directed Graph. Definitions. A Strong Component Algorithm. Analysis. Biconnected Components of an Undirected Graph. Articulation Points and Biconnected Components. The Bicomponent Algorithm. Analysis. Generalizations. 8. Graph Optimization Problems and Greedy Algorithms. Introduction. Prim’s Minimum Spanning Tree Algorithm. Definition and Examples of Minimum Spanning Trees. An Overview of the Algorithm. Properties of Minimum Spanning Trees. Correctness of Prim’s MST Algorithm. Managing the Fringe Efficiently with a Priority Queue. Implementation. Analysis (Time and Space). Lower Bound. Single-Source Shortest Paths. Background. Properties of Shortest Paths. Dijkstra’s Shortest-Path Algorithm. Implementation. Kruskal’s Minimum Spanning Tree Algorithm. Analysis. 9. Transitive Closure, All-Pairs Shortest Paths. The Transitive Closure of a Binary Relation. Definitions and Background. Finding the Reachability Matrix by Depth-First Search. Transitive Closure by Short Cuts. Warshall—s Algorithm for Transitive Closure. The Basic Algorithm. Warshall—s Algorithm for Bit Matrices. Distances in Graphs. Computing Transitive Closure by Matrix Operations. Multiplying Bit Matrices — Kronrod’s Algorithm. Introduction. Kronrod—s Algorithm. Lower Bound (*). 10. Dynamic Programming. Introduction. Multiplying a Sequence of Matrices. Constructing Optimal Binary Search Trees. Separating Words into Lines. Some Comments on Developing a Dynamic Programming Algorithm. 11. String Matching. A Straightforward Solution. The Knuth-Morris-Pratt Algorithm. Pattern Matching with Finite Automata. The Knuth-Morris-Pratt Flowchart. Construction of the KMP Flowchart. Analysis of the Flowchart Construction. The Knuth-Morris-Pratt Scan Algorithm. The Boyer-Moore Algorithm. The New Idea. And the “Old” Idea. The Boyer-Moore Scan Algorithm. Remarks. Approximate String Matching. Exercises. 12. Polynomials and Matrices. Introductory Comments. Evaluating Polynomial Functions. Algorithms. Lower Bounds for Polynomial Evaluation. Preprocessing of Coefficients. Vector and Matrix Multiplication. Review of Standard Algorithms. Winograd’s Matrix Multiplication. Lower Bounds for Matrix Multiplication. Strassen’s Matrix Multiplication. The Fast Fourier Transform and Convolution (*). Introduction. The Fast Fourier Transform. Convolution. Appendix: Complex Numbers and Roots of Unity. 13. NP-Complete Problems. P and NP. Decision Problems. Some Sample Problems. The Class P. The Class NP. The Size of the Input. NP-Complete Problems. Polynomial Reductions. Some Known NP-Complete Problems. What Makes a Problem Hard? Optimization Problems and Decision Problems. Approximation Algorithms. Bin Packing. The First Fit Decreasing Strategy. Other Heuristics. The Knapsack and Subset-Sum Problems. Graph Coloring. Some Basic Techniques. Approximate Graph Coloring Is Hard. Wigderson’s Graph Coloring Algorithm. The Traveling Salesperson Problem. Greedy Strategies. The Nearest Neighbor Strategy. The Shortest Link Strategy. How Good Are the TSP Approximation Algorithms? Computing with DNA. The Problem and an Overview of the Algorithm. DNA Background. Adleman’s Directed Graph and the DNA Algorithm. Analysis and Evaluation. 14. Parallel Algorithms. Parallelism, the PRAM, and Other Models. Introduction. The PRAM. Other Models. Some PRAM Algorithms. The Binary Fan-In Technique. Some Easily Parallelizable Algorithms. Handling Write Conflicts. Boolean or on n Bits. An Algorithm for Finding Maximum in Constant Time. Merging and Sorting. Introduction. Merging. Sorting. Finding Connected Components. Strategy and Techniques. The Algorithm. PRAM Implementation of the Algorithm. Analysis. A Lower Bound for Computing a Function on n Bits. A: Java Examples and Techniques. A Java “Main Program.” Library IntListLib Examples. Generic Order and the “Comparable” Interface. Copy via the “Clone” Interface. Subclasses Extend the Capability of Their Superclass. 0201612445T04062001


Best Sellers


Product Details
  • ISBN-13: 9780201612448
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Pearson
  • Depth: 32
  • Height: 241 mm
  • No of Pages: 720
  • Series Title: English
  • Sub Title: Introduction to Design and Analysis
  • Width: 198 mm
  • ISBN-10: 0201612445
  • Publisher Date: 07 Dec 1999
  • Binding: Paperback
  • Edition: 3 Rev ed
  • Language: English
  • Returnable: N
  • Spine Width: 32 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
Computer Algorithms: Introduction to Design and Analysis
Pearson Education (US) -
Computer Algorithms: Introduction to Design and Analysis
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.

Computer Algorithms: Introduction to Design and Analysis

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