Articoli correlati a Algorithms in a Nutshell

Algorithms in a Nutshell - Brossura

 
9780596516246: Algorithms in a Nutshell

Sinossi

Creating robust software requires the use of efficient algorithms, but programmers seldom think about them until a problem occurs. Algorithms in a Nutshell describes a large number of existing algorithms for solving a variety of problems, and helps you select and implement the right algorithm for your needs -- with just enough math to let you understand and analyze algorithm performance.

With its focus on application, rather than theory, this book provides efficient code solutions in several programming languages that you can easily adapt to a specific project. Each major algorithm is presented in the style of a design pattern that includes information to help you understand why and when the algorithm is appropriate.

With this book, you will:

  • Solve a particular coding problem or improve on the performance of an existing solution
  • Quickly locate algorithms that relate to the problems you want to solve, and determine why a particular algorithm is the right one to use
  • Get algorithmic solutions in C, C++, Java, and Ruby with implementation tips
  • Learn the expected performance of an algorithm, and the conditions it needs to perform at its best
  • Discover the impact that similar design decisions have on different algorithms
  • Learn advanced data structures to improve the efficiency of algorithms

With Algorithms in a Nutshell, you'll learn how to improve the performance of key algorithms essential for the success of your software applications.

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

L'autore

George Heineman is an Associate Professor of Computer Science at WPI. His research interests are in Software Engineering. He co-edited the 2001 book "Component-Based Software Engineering: Putting the Pieces Together". He was the Program Chair for the 2005 International Symposium on Component-Based Software Engineering.

Gary Pollice is a self-labeled curmudgeon (that's a crusty, ill-tempered, usually old man) who spent over 35 years in industry trying to figure out what he wanted to be when he grew up. Even though he hasn't grown up yet, he did make the move in 2003 to the hallowed halls of academia where he has been corrupting the minds of the next generation of software developers with radical ideas like, "develop software for your customer, learn how to work as part of a team, design and code quality and elegance and correctness counts, and it's okay to be a nerd as long as you are a great one."

Gary is a Professor of Practice (meaning he had a real job before becoming a professor) at Worcester Polytechnic Institute. He went to WPI because he was so impressed with the WPI graduates that he's worked with over the years. He lives in central Massachusetts with his wife, Vikki, and their two dogs, Aloysius and Ignatius. When not working on geeky things he ... well he's always working on geeky things. You can see what he's up to by visiting his WPI home page at:http://web.cs.wpi.edu/~gpollice/. Feel free to drop him a note and complain or cheer about the book.

Stanley Selkow received a BS in Electrical Engineering from Carnegie Institute of Technology in 1965, and then a Ph.D. in the same area from the University of Pennsylvania in 1970. From 1968 to 1970 he was in the Public Health Service at the National Institutes of Health at Bethesda Maryland. Since 1970 he has been on the faculty at universities in Knoxville TN and Worcester MA, as well as Montreal, Chonqing, Lausanne and Paris. His major research has been in graph theory and algorithm design.

Contenuti

Preface; Principle: Use Real Code, Not Pseudocode; Principle: Separate the Algorithm from the Problem Being Solved; Principle: Introduce Just Enough Mathematics; Principle: Support Mathematical Analysis Empirically; Audience; Contents of This Book; Conventions Used in This Book; Using Code Examples; Comments and Questions; Safari® Books Online; Acknowledgments; References; Part I: I; Chapter 1: Algorithms Matter; 1.1 Understand the Problem; 1.2 Experiment if Necessary; 1.3 Side Story; 1.4 The Moral of the Story; 1.5 References; Chapter 2: The Mathematics of Algorithms; 2.1 Size of a Problem Instance; 2.2 Rate of Growth of Functions; 2.3 Analysis in the Best, Average, and Worst Cases; 2.4 Performance Families; 2.5 Mix of Operations; 2.6 Benchmark Operations; 2.7 One Final Point; 2.8 References; Chapter 3: Patterns and Domains; 3.1 Patterns: A Communication Language; 3.2 Algorithm Pattern Format; 3.3 Pseudocode Pattern Format; 3.4 Design Format; 3.5 Empirical Evaluation Format; 3.6 Domains and Algorithms; 3.7 Floating-Point Computations; 3.8 Manual Memory Allocation; 3.9 Choosing a Programming Language; 3.10 References; Part II: II; Chapter 4: Sorting Algorithms; 4.1 Overview; 4.2 Insertion Sort; 4.3 Median Sort; 4.4 Quicksort; 4.5 Selection Sort; 4.6 Heap Sort; 4.7 Counting Sort; 4.8 Bucket Sort; 4.9 Criteria for Choosing a Sorting Algorithm; 4.10 References; Chapter 5: Searching; 5.1 Overview; 5.2 Sequential Search; 5.3 Binary Search; 5.4 Hash-based Search; 5.5 Binary Tree Search; Chapter 6: Graph Algorithms; 6.1 Overview; 6.2 Depth-First Search; 6.3 Breadth-First Search; 6.4 Single-Source Shortest Path; 6.5 All Pairs Shortest Path; 6.6 Minimum Spanning Tree Algorithms; 6.7 References; Chapter 7: Path Finding in AI; 7.1 Overview; 7.2 Depth-First Search; 7.3 Breadth-First Search; 7.4 A*Search; 7.5 Comparison; 7.6 Minimax; 7.7 NegMax; 7.8 AlphaBeta; 7.9 References; Chapter 8: Network Flow Algorithms; 8.1 Overview; 8.2 Maximum Flow; 8.3 Bipartite Matching; 8.4 Reflections on Augmenting Paths; 8.5 Minimum Cost Flow; 8.6 Transshipment; 8.7 Transportation; 8.8 Assignment; 8.9 Linear Programming; 8.10 References; Chapter 9: Computational Geometry; 9.1 Overview; 9.2 Convex Hull Scan; 9.3 LineSweep; 9.4 Nearest Neighbor Queries; 9.5 Range Queries; 9.6 References; Part III: III; Chapter 10: When All Else Fails; 10.1 Variations on a Theme; 10.2 Approximation Algorithms; 10.3 Offline Algorithms; 10.4 Parallel Algorithms; 10.5 Randomized Algorithms; 10.6 Algorithms That Can Be Wrong, but with Diminishing Probability; 10.7 References; Chapter 11: Epilogue; 11.1 Overview; 11.2 Principle: Know Your Data; 11.3 Principle: Decompose the Problem into Smaller Problems; 11.4 Principle: Choose the Right Data Structure; 11.5 Principle: Add Storage to Increase Performance; 11.6 Principle: If No Solution Is Evident, Construct a Search; 11.7 Principle: If No Solution Is Evident, Reduce Your Problem to Another Problem That Has a Solution; 11.8 Principle: Writing Algorithms Is Hard―Testing Algorithms Is Harder; Part IV: IV; Appendix A: Benchmarking; A.1 Statistical Foundation; A.2 Hardware; A.3 Reporting; A.4 Precision; About the Authors; Colophon;|

  • Preface
  • Part I: I
    • Chapter 1: Algorithms Matter
    • Chapter 2: The Mathematics of Algorithms
    • Chapter 3: Patterns and Domains
  • Part II: II
    • Chapter 4: Sorting Algorithms
    • Chapter 5: Searching
    • Chapter 6: Graph Algorithms
    • Chapter 7: Path Finding in AI
    • Chapter 8: Network Flow Algorithms
    • Chapter 9: Computational Geometry
  • Part III: III
    • Chapter 10: When All Else Fails
    • Chapter 11: Epilogue
  • Part IV: IV
    • Appendix A: Benchmarking
  • About the Authors
  • Colophon

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreO'Reilly Media
  • Data di pubblicazione2008
  • ISBN 10 059651624X
  • ISBN 13 9780596516246
  • RilegaturaCopertina flessibile
  • Numero edizione1
  • Numero di pagine343

Compra usato

Condizioni: buono
This is a used book in good condition... Scopri di più su questo articolo

Spese di spedizione: EUR 3,55
In U.S.A.

Destinazione, tempi e costi

Aggiungi al carrello

Altre edizioni note dello stesso titolo

9788184046083: Algorithms in a Nutshell

Edizione in evidenza

ISBN 10:  8184046081 ISBN 13:  9788184046083
Casa editrice: Shroff Publishers & Distribu..., 2008
Brossura

I migliori risultati di ricerca su AbeBooks

Foto dell'editore

Heineman, George,Pollice, Gary,Selkow, Stanley
Editore: O'Reilly Media, 2008
ISBN 10: 059651624X ISBN 13: 9780596516246
Antico o usato paperback

Da: Once Upon A Time Books, Siloam Springs, AR, U.S.A.

Valutazione del venditore 4 su 5 stelle 4 stelle, Maggiori informazioni sulle valutazioni dei venditori

paperback. Condizione: Good. This is a used book in good condition and may show some signs of use or wear . This is a used book in good condition and may show some signs of use or wear . Codice articolo mon0001264496

Contatta il venditore

Compra usato

EUR 2,02
Convertire valuta
Spese di spedizione: EUR 3,55
In U.S.A.
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Heineman, George T.; Pollice, Gary; Selkow, Stanley
Editore: Oreilly & Associates Inc, 2008
ISBN 10: 059651624X ISBN 13: 9780596516246
Antico o usato paperback

Da: Orion Tech, Kingwood, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

paperback. Condizione: Fair. Codice articolo 059651624X-4-31787458

Contatta il venditore

Compra usato

EUR 5,67
Convertire valuta
Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Heineman, George; Pollice, Gary; Selkow, Stanley
Editore: O'Reilly Media, 2008
ISBN 10: 059651624X ISBN 13: 9780596516246
Antico o usato Paperback

Da: ThriftBooks-Dallas, Dallas, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: USED_GOOD. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 1.15. Codice articolo G059651624XI3N00

Contatta il venditore

Compra usato

EUR 5,76
Convertire valuta
Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Foto dell'editore

Heineman, George; Pollice, Gary; Selkow, Stanley
Editore: O'Reilly Media, 2008
ISBN 10: 059651624X ISBN 13: 9780596516246
Antico o usato Paperback

Da: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: USED_GOOD. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 1.15. Codice articolo G059651624XI3N00

Contatta il venditore

Compra usato

EUR 5,76
Convertire valuta
Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Foto dell'editore

Heineman, George; Pollice, Gary; Selkow, Stanley
Editore: O'Reilly Media, 2008
ISBN 10: 059651624X ISBN 13: 9780596516246
Antico o usato Paperback

Da: ThriftBooks-Phoenix, Phoenix, AZ, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: USED_GOOD. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 1.15. Codice articolo G059651624XI3N00

Contatta il venditore

Compra usato

EUR 5,76
Convertire valuta
Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Foto dell'editore

Heineman, George; Pollice, Gary; Selkow, Stanley
Editore: O'Reilly Media, 2008
ISBN 10: 059651624X ISBN 13: 9780596516246
Antico o usato Paperback

Da: ThriftBooks-Reno, Reno, NV, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: USED_GOOD. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 1.15. Codice articolo G059651624XI3N00

Contatta il venditore

Compra usato

EUR 5,76
Convertire valuta
Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Foto dell'editore

Selkow, Stanley, Heineman, George T., Pollice, Gary
ISBN 10: 059651624X ISBN 13: 9780596516246
Antico o usato Brossura

Da: Better World Books: West, Reno, NV, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. Used book that is in clean, average condition without any missing pages. Codice articolo 10311693-6

Contatta il venditore

Compra usato

EUR 6,55
Convertire valuta
Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Selkow, Stanley, Heineman, George T., Pollice, Gary
ISBN 10: 059651624X ISBN 13: 9780596516246
Antico o usato Brossura

Da: Better World Books, Mishawaka, IN, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: USED_GOOD. Used book that is in clean, average condition without any missing pages. Codice articolo 10311693-6

Contatta il venditore

Compra usato

EUR 6,55
Convertire valuta
Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Selkow, Stanley, Heineman, George T., Pollice, Gary
ISBN 10: 059651624X ISBN 13: 9780596516246
Antico o usato Brossura

Da: Better World Books, Mishawaka, IN, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. Former library book; may include library markings. Used book that is in clean, average condition without any missing pages. Codice articolo 9006920-20

Contatta il venditore

Compra usato

EUR 6,55
Convertire valuta
Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Selkow, Stanley,Pollice, Gary,Heineman, George T.
Editore: O'Reilly Media, 2008
ISBN 10: 059651624X ISBN 13: 9780596516246
Antico o usato Paperback

Da: HPB-Red, Dallas, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Good. Connecting readers with great books since 1972! Used textbooks may not include companion materials such as access codes, etc. May have some wear or writing/highlighting. We ship orders daily and Customer Service is our top priority!. Codice articolo S_363840889

Contatta il venditore

Compra usato

EUR 4,63
Convertire valuta
Spese di spedizione: EUR 3,37
In U.S.A.
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Vedi altre 22 copie di questo libro

Vedi tutti i risultati per questo libro