Data Structures and Algorithm Analysis [ ds ] in C, by Mark A. Weiss jntu e-book free download



E-Book Details:
Title:
Data Structures and Algorithm Analysis in C,  by Mark A. Weiss 
Publisher:
Addison-Wesley
Author:
Mark A. Weiss
Edition:
Paperback 3rd Edition
Edition Number:
3
ISBN:
0201498405
EAN:
9780201498400
No. of Pages:
600

Description:
Mark Allen Weiss' successful book provides a modern approach to algorithms and data structures using the C programming language. The book's conceptual presentation focuses on ADTs and the analysis of algorithms for efficiency, with a particular concentration on performance and running time. The second edition contains a new chapter that examines advanced data structures such as red black trees, top down splay trees, treaps, k-d trees, and pairing heaps among others. All code examples now conform to ANSI C and coverage of the formal proofs underpinning several key data structures has been strengthened.
Author Bios:
Mark Allen Weiss is a Professor in the School of Computer Science at Florida International University. He received his Ph.D. in Computer Science from Princeton University where he studied under Robert Sedgewick. Dr.Weiss has received FIU's Excellence in Research Award, as well as the Teaching Incentive Program Award, which was established by the Florida Legislature to recognize teaching excellence. Mark Allen Weiss is on the Advanced Placement Computer Science Development Committee. He is the successful author of Algorithms, Data Structures, and Problem Solving with C++ and the series Data Structures and Algorithm Analysis in Pascal, Ada, C, and C++, with Addison-Wesley.
Backcover Copy:
In this second edition of his best-selling book, Data Structures and Algorithm Analysis in C, Mark Allen Weiss, continues to refine and enhance his innovative approach to algorithms and data structures. Using a C implementation, he highlights conceptual topics, focusing on ADTs and the analysis of algorithms for efficiency as well as performance and running time. Dr. Weiss also distinguishes Data Structures and Algorithm Analysis in C with the extensive use of figures and examples showing the successive stages of an algorithm, his engaging writing style, and a logical organization of topics.
Features:
  • Includes a chapter on algorithm and design techniques that covers greedy algorithms, divide and conquer algorithms, dynamic programming, randomized algorithms, and backtracking
  • Presents current topics and newer data structures such as Fibonacci heaps, skew heaps, binomial queues, skip lists, and splay trees
  • Contains a chapter on amortized analysis that examines the advanced data structures presented earlier in the book
  • Provides a new chapter on advanced data structures and their implementation covering red black trees, top down splay trees, treaps, k-d trees, pairing heaps, and more
  • Incorporates new results on the average case analysis of heapsort
Table of Contents:

1. Introduction. 
·         What’s the Book About?
·         Mathematics Review.
·         Exponents.
·         Logarithms.
·         Series.
·         Modular Arithmetic.
·         The P word.
·         A Brief Introduction to Recursion.
2. Algorithm Analysis. 
·         Mathematical Background.
·         Model.
·         What to Analyze.
·         Running Time Calculations.
·         A Simple Example.
·         General Rules.
·         Solutions for the Maximum Subsequence Sum Problem.
·         Logarithms in the Running Time.
·         Checking Your Analysis.
·         A Grain of Salt.
3. Lists, Stacks, and Queues. 
·         Abstract Data Types (ADTs).
·         The List ADT.
·         Simple Array Implementation of Lists.
·         Linked Lists.
·         Programming Details.
·         Common Errors.
·         Doubly Linked Lists.
·         Circularly Linked Lists.
·         Examples.
·         Cursor Implementation of Linked Lists.
·         The Stack ADT.
·         Stack Model.
·         Implementation of Stacks.
·         Applications.
·         The Queue ADT.
·         Queue Model.
·         Array Implementation of Queues.
·         Applications of Queues.
4. Trees. 
·         Preliminaries.
·         Implementation of Trees.
·         Tree Traversals with an Application.
·         Binary Trees.
·         Implementation.
·         Expression Trees.
·         The Search Tree ADT—Binary Search Trees.
·         MakeEmpty.
·         Find.
·         FindMin and FindMax.
·         Insert.
·         Delete.
·         Average-Case Analysis.
·         AVL Trees.
·         Single Rotation.
·         Double Rotation.
·         Splay Trees.
·         A Simple Idea (That Does Not Work).
·         Splaying.
·         Tree Traversals (Revisited).
·         B-Trees.
5. Hashing. 
·         General Idea.
·         Hash Function.
·         Separate Chaining.
·         Open Addressing.
·         Linear Probing.
·         Quadratic Probing.
·         Double Hashing.
·         Rehashing.
·         Extendible Hashing.
6. Priority Queues (Heaps). 
·         Model.
·         Simple Implementations.
·         Binary Heaps.
·         Structure Property.
·         Heap Order Property.
·         Basic Heap Operations.
·         Other Heap Operations.
·         Applications of Priority Queues.
·         The Selection Problem.
·         Event Simulation.
·         d-Heaps.
·         Leftist Heaps.
·         Leftist Heap Property.
·         Leftist Heap Operations.
·         Skew Heaps.
·         Binomial Queues.
·         Binomial Queue Structure.
·         Binomial Queue Operations.
·         Implementations of Binomial Queues.
7. Sorting. 
·         Preliminaries.
·         Insertion Sort.
·         The Algorithm.
·         Analysis of Insertion Sort.
·         A Lower Bound for Simple Sorting Algorithms.
·         Shellsort.
·         Analysis of Insertion Sort.
·         Heapsort.
·         Analysis of Heapsort.
·         Mergesort.
·         Analysis of Mergesort.
·         Quicksort.
·         Picking the Pivot.
·         Partitioning Strategy.
·         Small Arrays.
·         Actual Quicksort Routines.
·         Analysis of Quicksort.
·         A Linear-Expected-Time Algorithm for Selection.
·         Sorting Large Structures.
·         A General Lower Bound for Sorting.
·         Decision Trees.
·         Bucket Sort.
·         External Sorting.
·         Why We Need New Algorithms.
·         Model for External Sorting.
·         The Simple Algorithm.
·         Multiway Merge.
·         Polyphase Merge.
·         Replacement Selection.
8. The Disjoint Set ADT. 
·         Equivalence Relations.
·         The Dynamic Equivalence Problem.
·         Basic Data Structure.
·         Smart Union Algorithms.
·         Path Compression.
·         Worst Case for Union-by-Rank and Path Compression.
·         Analysis of the Union/Find Algorithm.
·         An Application.
9. Graph Algorithms. 
·         Definitions.
·         Representation of Graphs.
·         Topological Sort.
·         Shortest-Path Algorithms.
·         Unweighted Shortest Paths.
·         Dijkstra’s Algorithm.
·         Graphs with Negative Edge Costs.
·         Acyclic Graphs.
·         All-Pairs Shortest Path.
·         Network Flow Problems.
·         A Simple Maximum-Flow Algorithm.
·         Minimum Spanning Tree.
·         Prim’s Algorithm.
·         Kruskal’s Algorithm.
·         Applications of Depth-First Search.
·         Undirected Graphs.
·         Biconnectivity.
·         Euler Circuits.
·         Directed Graphs.
·         Finding Strong Components.
·         Introduction to the NP-Completeness.
·         Easy vs. Hard.
·         The Class NP.
·         NP-Complete Problems.
10. Algorithm Design Techniques. 
·         Greedy Algorithms.
·         A Simple Scheduling Problem.
·         Huffman Codes.
·         Approximate Bin Packing.
·         Divide and Conquer.
·         Running Time of Divide and Conquer Algorithms.
·         Closest-Points Problem.
·         The Selection Problem.
·         Theoretical Improvements for Arithmetic Problems.
·         Dynamic Programming.
·         Using a Table Instead of Recursion.
·         Ordering Matrix Multiplications.
·         Optimal Binary Search Tree.
·         All-Pairs Shortest Path.
·         Randomized Algorithms.
·         Random Number Generators.
·         Skip Lists.
·         Primality Testing.
·         Backtracking Algorithms.
·         The Turnpike Reconstruction Problem.
·         Games.
11. Amortized Analysis. 
·         An Unrelated Puzzle.
·         Binomial Queues.
·         Skew Heaps.
·         Fibonacci Heaps.
·         Cutting Nodes in Leftist Heaps.
·         Lazy Merging for Binomial Queues.
·         The Fibonacci Heap Operations.
·         Proof of the Time Bound.
·         Splay Trees.
12. Advanced Data Structures and Implementation. 
·         Top-Down Splay Trees.
·         Red Black Trees.
·         Bottom-Up Insertion.
·         Top-Down Red Black Trees.
·         Top-Down Deletion.
·         Deterministic Skip Lists.
·         AA-Trees.
·         Treaps.
·         k-d Trees.
·         Pairing Heaps.

0 comments :

Post a Comment

Followers