Tous nos rayons

Déjà client ? Identifiez-vous

Mot de passe oublié ?

Nouveau client ?

CRÉER VOTRE COMPTE
Data Structures and Algorithm Analysis in C
Ajouter à une liste

Librairie Eyrolles - Paris 5e
Indisponible

Data Structures and Algorithm Analysis in C

Data Structures and Algorithm Analysis in C

Second Edition

Mark Allen Weiss

510 pages, parution le 15/10/1996

Résumé

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.
  • 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
  • Offers source code from example programs via anonymous FTP

TABLE OF CONTENTS

1.INTRODUCTION

  1. What's the Book About?
  2. Mathematics Review
    1. Exponents
    2. Logarithms
    3. Series
    4. Modular Arithmetic
    5. The P word
  3. A Brief Introduction to Recursion
    Summary
    Exercises
    References

2. ALGORITHM ANALYSIS

  1. Mathematical Background
  2. Model
  3. What to Analyze
  4. Running Time Calculations
    1. A Simple Example
    2. General Rules
    3. Solutions for the Maximum Subsequence Sum Problem
    4. Logarithms in the Running Time
    5. Checking Your Analysis
    6. A Grain of Salt
    Summary
    Exercises
    References

3. LISTS, STACKS, AND QUEUES

  1. Abstract Data Types (ADTs)
  2. The List ADT
    1. Simple Array Implementation of Lists
    2. Linked Lists
    3. Programming Details
    4. Common Errors
    5. Doubly Linked Lists
    6. Circularly Linked Lists
    7. Examples
    8. Cursor Implementation of Linked Lists
  3. The Stack ADT
    1. Stack Model
    2. Implementation of Stacks
    3. Applications
  4. The Queue ADT
    1. Queue Model
    2. Array Implementation of Queues
    3. Applications of Queues
    Summary
    Exercises

4. TREES

  1. Preliminaries
    1. Implementation of Trees
    2. Tree Traversals with an Application
  2. Binary Trees
    1. Implementation
    2. Expression Trees
  3. The Search Tree ADT--Binary Search Trees
    1. MakeEmpty
    2. Find
    3. FindMin and FindMax
    4. Insert
    5. Delete
    6. Average-Case Analysis
  4. AVL Trees
    1. Single Rotation
    2. Double Rotation
  5. Splay Trees
    1. A Simple Idea (That Does Not Work)
    2. Splaying
  6. Tree Traversals (Revisited)
  7. B-Trees
    Summary
    Exercises
    References

5. HASHING

  1. General Idea
  2. Hash Function
  3. Separate Chaining
  4. Open Addressing
    1. Linear Probing
    2. Quadratic Probing
    3. Double Hashing
  5. Rehashing
  6. Extendible Hashing
    Summary
    Exercises
    References

6. PRIORITY QUEUES (HEAPS)

  1. Model
  2. Simple Implementations
  3. Binary Heaps
    1. Structure Property
    2. Heap Order Property
    3. Basic Heap Operations
    4. Other Heap Operations
  4. Applications of Priority Queues
    1. The Selection Problem
    2. Event Simulation
  5. d-Heaps
  6. Leftist Heaps
    1. Leftist Heap Property
    2. Leftist Heap Operations
  7. Skew Heaps
  8. Binomial Queues
    1. Binomial Queue Structure
    2. Binomial Queue Operations
    3. Implementations of Binomial Queues
    Summary
    Exercises
    References

7. SORTING

  1. Preliminaries
  2. Insertion Sort
    1. The Algorithm
    2. Analysis of Insertion Sort
  3. A Lower Bound for Simple Sorting Algorithms
  4. Shellsort
    1. Analysis of Insertion Sort
  5. Heapsort
    1. Analysis of Heapsort
  6. Mergesort
    1. Analysis of Mergesort
  7. Quicksort
    1. Picking the Pivot
    2. Partitioning Strategy
    3. Small Arrays
    4. Actual Quicksort Routines
    5. Analysis of Quicksort
    6. A Linear-Expected-Time Algorithm for Selection
  8. Sorting Large Structures
  9. A General Lower Bound for Sorting
    1. Decision Trees
  10. Bucket Sort
  11. External Sorting
    1. Why We Need New Algorithms
    2. Model for External Sorting
    3. The Simple Algorithm
    4. Multiway Merge
    5. Polyphase Merge
    6. Replacement Selection
    Summary
    Exercises
    References

8. THE DISJOINT SET ADT

  1. Equivalence Relations
  2. The Dynamic Equivalence Problem
  3. Basic Data Structure
  4. Smart Union Algorithms
  5. Path Compression
  6. Worst Case for Union-by-Rank and Path Compression
    1. Analysis of the Union/Find Algorithm
  7. An Application
    Summary
    Exercises
    References

9. GRAPH ALGORITHMS

  1. Definitions
    1. Representation of Graphs
  2. Topological Sort
  3. Shortest-Path Algorithms
    1. Unweighted Shortest Paths
    2. Dijkstra's Algorithm
    3. Graphs with Negative Edge Costs
    4. Acyclic Graphs
    5. All-Pairs Shortest Path
  4. Network Flow Problems
    1. A Simple Maximum-Flow Algorithm
  5. Minimum Spanning Tree
    1. Prim's Algorithm
    2. Kruskal's Algorithm
  6. Applications of Depth-First Search
    1. Undirected Graphs
    2. Biconnectivity
    3. Euler Circuits
    4. Directed Graphs
    5. Finding Strong Components
  7. Introduction to the NP-Completeness
    1. Easy vs. Hard
    2. The Class NP
    3. NP-Complete Problems
    Summary
    Exercises
    References

10. ALGORITHM DESIGN TECHNIQUES

  1. Greedy Algorithms
    1. A Simple Scheduling Problem
    2. Huffman Codes
    3. Approximate Bin Packing
  2. Divide and Conquer
    1. Running Time of Divide and Conquer Algorithms
    2. Closest-Points Problem
    3. The Selection Problem
    4. Theoretical Improvements for Arithmetic Problems
  3. Dynamic Programming
    1. Using a Table Instead of Recursion
    2. Ordering Matrix Multiplications
    3. Optimal Binary Search Tree
    4. All-Pairs Shortest Path
  4. Randomized Algorithms
    1. Random Number Generators
    2. Skip Lists
    3. Primality Testing
  5. Backtracking Algorithms
    1. The Turnpike Reconstruction Problem
    2. Games
    Summary
    Exercises
    References

11. AMORTIZED ANALYSIS

  1. An Unrelated Puzzle
  2. Binomial Queues
  3. Skew Heaps
  4. Fibonacci Heaps
    1. Cutting Nodes in Leftist Heaps
    2. Lazy Merging for Binomial Queues
    3. The Fibonacci Heap Operations
    4. Proof of the Time Bound
  5. Splay Trees
    Summary
    Exercises
    References

12. ADVANCED DATA STRUCTURES AND IMPLEMENTATION

  1. Top-Down Splay Trees
  2. Red Black Trees
    1. Bottom-Up Insertion
    2. Top-Down Red Black Trees
    3. Top-Down Deletion
  3. Deterministic Skip Lists
  4. AA-Trees
  5. Treaps
  6. k-d Trees
  7. Pairing Heaps
    Summary
    Exercises
    References

INDEX

L'auteur - Mark Allen Weiss

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.

Caractéristiques techniques

  PAPIER
Éditeur(s) Addison Wesley
Auteur(s) Mark Allen Weiss
Parution 15/10/1996
Nb. de pages 510
Format 19,5 x 24
Couverture Relié
Poids 1100g
EAN13 9780201498400

Avantages Eyrolles.com

Livraison à partir de 0,01 en France métropolitaine
Paiement en ligne SÉCURISÉ
Livraison dans le monde
Retour sous 15 jours
+ d'un million et demi de livres disponibles
satisfait ou remboursé
Satisfait ou remboursé
Paiement sécurisé
modes de paiement
Paiement à l'expédition
partout dans le monde
Livraison partout dans le monde
Service clients sav@commande.eyrolles.com
librairie française
Librairie française depuis 1925
Recevez nos newsletters
Vous serez régulièrement informé(e) de toutes nos actualités.
Inscription