Data structures and algorithm analysis in C++ /

Data Structures and Algorithm Analysis in C++ is an advanced algorithms book that bridges the gap between traditional CS2 and Algorithms Analysis courses.

Saved in:
Bibliographic Details
Main Author: Weiss, Mark Allen (Author)
Format: Book
Language:English
Published: Boston : Pearson, [2014]
Edition:Fourth edition.
Series:Always learning.
Subjects:

MARC

LEADER 00000cam a2200000 i 4500
001 34d87afe-3fd7-4d01-a7de-130fda976564
005 20240707000000.0
008 130507t20142014maua b 001 0 eng
035 |a (MnMN)008050547SYS01 
010 |a 2013011064 
020 |a 9780132847377 (alk. paper) 
020 |a 013284737X (alk. paper) 
035 9 |a 842350506 
035 |a ocn842350506 
040 |a DLC  |b eng  |e rda  |c DLC  |d CUV  |d YDXCP  |d OCLCA  |d OCLCF  |d NOR 
042 |a pcc 
049 |a NORA 
050 0 0 |a QA76.73.C153  |b W46 2014 
082 0 0 |a 005.7/3  |2 23 
090 |a QA76.73.C153  |b W45 2014  |9 LOCAL 
100 1 |a Weiss, Mark Allen,  |e author. 
245 1 0 |a Data structures and algorithm analysis in C++ /  |c Mark Allen Weiss, Florida International University. 
250 |a Fourth edition. 
264 1 |a Boston :  |b Pearson,  |c [2014] 
264 4 |c ©2014 
300 |a xviii, 635 pages :  |b illustrations ;  |c 24 cm. 
336 |a text  |b txt  |2 rdacontent 
337 |a unmediated  |b n  |2 rdamedia 
338 |a volume  |b nc  |2 rdacarrier 
490 1 |a Always Learning 
504 |a Includes bibliographical references and index. 
505 0 0 |t Preface --  |g Chapter 1.  |t Programming : a general overview --  |g 1.1.  |t What's this book about? --  |g 1.2.  |t Mathematics review --  |g 1.2.1.  |t Exponents --  |g 1.2.2.  |t Logarithms --  |g 1.2.3.  |t Series --  |g 1.2.4.  |t Modular arithmetic --  |g 1.2.5. The  |t P word --  |g 1.3. A  |t brief introduction to recursion --  |g 1.4.  |t C++ classes --  |g 1.4.1.  |t Basic class syntax --  |g 1.4.2.  |t Extra constructor syntax and accessors --  |g 1.4.3.  |t Separation of interface and implementation --  |g 1.4.4.  |t vector and string --  |g 1.5.  |t C++ details --  |g 1.5.1.  |t Pointers --  |g 1.5.2.  |t Lvalues, Rvalues, and references --  |g 1.5.3.  |t Parameter passing --  |g 1.5.4.  |t Return passing --  |g 1.5.5.  |t std::swap and std::move --  |g 1.5.6. The  |t big-five : destructor, copy constructor, move constructor, copy assignment operator=, move assignment operator= --  |g 1.5.7.  |t C-style arrays and strings -- 
505 0 0 |g 1.6.  |t Templates --  |g 1.6.1.  |t Function templates --  |g 1.6.1.  |t Function templates --  |g 1.6.2.  |t Class templates --  |g 1.6.3.  |t Object, comparable, and an example --  |g 1.6.4.  |t Function objects --  |g 1.6.5.  |t Separate compilation of class templates --  |g 1.7.  |t Using matrices --  |g 1.7.1. The  |t data members, constructors, and basic accessors --  |g 1.7.2.  |t operator[] --  |g 1.7.3.  |t Big-five --  |t Summary --  |t Exercises --  |t References -- 
505 0 0 |g Chapter 2.  |t Algorithm analysis --  |g 2.1.  |t Mathematical background --  |g 2.2.  |t Model --  |g 2.3.  |t What to analyze --  |g 2.4.  |t Running-time calculations --  |g 2.4.1. A  |t simple example --  |g 2.4.2.  |t General rules --  |g 2.4.3.  |t Solutions for the maximum subsequence sum problem --  |g 2.4.4.  |t Logarithms in the running time --  |g 2.4.5.  |t Limitations of worst-case analysis --  |t Summary --  |t Exercises --  |t References -- 
505 0 0 |g Chapter 3.  |t Lists, stacks, and queues --  |g 3.1.  |t Abstract data types (ADTs) --  |g 3.2. The  |t List ADT --  |g 3.2.1.  |t Simple array implementation of lists --  |g 3.2.2.  |t Simple linked lists --  |g 3.3.  |t vector and list in the STL --  |g 3.3.1.  |t Iterators --  |g 3.2.2.  |t Example : using erase on a list --  |g 3.3.3  |t const_iterators --  |g 3.4.  |t Implementation of vector --  |g 3.5.  |t Implementation of list --  |g 3.6. The  |t Stack ADT --  |g 3.6.1.  |t Stack model --  |g 3.6.2.  |t Implementation of stacks --  |g 3.6.3.  |t Applications --  |g 3.7. The  |t Queue ADT --  |g 3.7.1.  |t Queue model --  |g 3.7.2.  |t Array implementation of queues --  |g 3.7.3.  |t Applications of queues --  |t Summary --  |t Exercises -- 
505 0 0 |g Chapter 4.  |t Trees --  |g 4.1.  |t Preliminaries --  |g 4.1.1.  |t Implementation of trees --  |g 4.1.2.  |t Tree traversals with an application --  |g 4.2.  |t Binary trees --  |g 4.2.1.  |t Implementation --  |g 4.2.2. An  |t example : expression trees --  |g 4.3. The  |t Search Tree ADT : binary search trees --  |g 4.3.1.  |t contains --  |g 4.3.2.  |t findMin and findMax --  |g 4.3.3.  |t insert --  |g 4.3.4.  |t remove --  |g 4.3.5.  |t Destructor and copy constructor --  |g 4.3.6.  |t Average-case analysis --  |g 4.4.  |t AVL trees --  |g 4.4.1.  |t Single rotation --  |g 4.2.2.  |t Double rotation --  |g 4.5.  |t Splay trees --  |g 4.5.1. A  |t simple idea (that does not work) --  |g 4.5.2.  |t Splaying --  |g 4.6.  |t Tree traversals (revisited) --  |g 4.7.  |t B-trees --  |g 4.8.  |t Sets and maps in the standard library --  |g 4.8.1.  |t Sets --  |g 4.8.2.  |t Maps --  |g 4.8.3.  |t Implementation of set and map --  |g 4.8.4. An  |t example that uses several maps --  |t Summary --  |t Exercises --  |t References -- 
505 0 0 |g Chapter 5.  |t Hashing --  |g 5.1.  |t General idea --  |g 5.2.  |t Hash function --  |g 5.3.  |t Separate chaining --  |g 5.4.  |t Hash tables without linked lists --  |g 5.4.1.  |t Linear probing --  |g 5.4.2.  |t Quadratic probing --  |g 5.4.3.  |t Double hashing --  |g 5.5.  |t Rehashing --  |g 5.6.  |t Hash tables in the standard library --  |g 5.7.  |t Hash tables with worst-case O(1) access --  |g 5.7.1.  |t Perfect hashing --  |g 5.7.2.  |t Cuckoo hashing --  |g 5.7.3.  |t Hopscotch hashing --  |g 5.8.  |t Universal hashing --  |g 5.9.  |t Extendible hashing --  |t Summary --  |t Exercises --  |t References -- 
505 0 0 |g Chapter 6  |t Priority queues (heaps) --  |g 6.1.  |t Model --  |g 6.2.  |t Simple implementations --  |g 6.3.  |t Binary heap --  |g 6.3.1.  |t Structure property --  |g 6.3.2.  |t Heap-order property --  |g 6.3.3.  |t basic heap operation s--  |g 6.3.4.  |t Other heap operations --  |g 6.4.  |t Applications of priority queues --  |g 6.4.1. The  |t selection property --  |g 6.4.2.  |t Event simulation --  |g 6.5.  |t d-Heaps --  |g 6.6.  |t Leftist heaps --  |g 6.6.1.  |t Leftist heap property --  |g 6.6.2.  |t Leftist heap operations --  |g 6.7.  |t Skew heaps --  |g 6.8.  |t Binominal queues --  |g 6.8.1.  |t Binomial queue structure --  |g 6.8.2.  |t Binomial queue operations --  |g 6.8.3.  |t Implementation of binomial queues --  |g 6.9.  |t Priority queues in the standard library --  |t Summary --  |t Exercises --  |t References -- 
505 0 0 |g Chapter 7.  |t Sorting --  |g 7.1.  |t Preliminaries --  |g 7.2.  |t Insertion sort --  |g 7.2.1. The  |t algorithm --  |g 7.2.2.  |t STL implementation of insertion sort --  |g 7.2.3.  |t Analysis of insertion sort --  |g 7.3. A  |t lower bound for simple sorting algorithms --  |g 7.4.  |t Shellsort --  |g 7.4.1.  |t Worst-case analysis of shellsort --  |g 7.5.  |t Heapsort ---  |g 7.5.1.  |t Analysis of heapsort --  |g 7.6. Mergesort --  |g 7.6.1.  |t Analysis of mergesort --  |g 7.7.  |t Quicksort --  |g 7.7.1.  |t Picking the pivot --  |g 7.7.2.  |t Partitioning strategy --  |g 7.7.3.  |t Small arrays --  |g 7.7.4.  |t Actual quicksort routines --  |g 7.7.5.  |t Analysis of quicksort --  |g 7.7.6. A  |t linear-expected-time algorithm for selection -- 
505 0 0 |g 7.8. A  |t general lower bound for sorting --  |g 7.8.1.  |t Decision trees --  |g 7.9.  |t Decision-tree lower bounds for selection problems --  |g 7.10.  |t Adversary lower bounds --  |g 7.11.  |t Linear-time sorts : bucket sort and radix sort --  |g 7.12.  |t External sorting --  |g 7.12.1.  |t Why we need new algorithms --  |g 7.12.2.  |t Model for external sorting --  |g 7.12.3. The  |t simple algorithm --  |g 7.12.4.  |t Multiway merge --  |g 7.12.5.  |t Polyphase merge --  |g 7.12.6.  |t Replacement selection --  |t Summary --  |t Exercises --  |t References -- 
505 0 0 |g Chapter 8. The  |t disjoint sets class --  |g 8.1.  |t Equivalence relations --  |g 8.2. The  |t dynamic equivalence problems --  |g 8.3.  |t Basic data structure --  |g 8.4.  |t Smart union algorithms --  |g 8.5.  |t Path compressions --  |g 8.6.  |t Worst case for union-by-rank and path compression --  |g 8.6.1.  |t Slowly growing functions --  |g 8.6.2. An  |t analysis by recursive decompression --  |g 8.6.3. An  |t O( M log * N ) bound --  |g 8.6.4. An  |t O( M [alpha](M, N) ) bound --  |g 8.7. An  |t application --  |t Summary --  |t Exercises --  |t References -- 
505 0 0 |g Chapter 9.  |t Graph algorithms --  |g 9.1.  |t Definitions --  |g 9.1.1.  |t Representation of graphs --  |g 9.2.  |t Topological sort --  |g 9.3.  |t Shortest-path algorithms --  |g 9.3.1.  |t Unweighted shortest paths --  |g 9.3.2.  |t Dijkstra's algorithm --  |g 9.3.3.  |t Graphs with negative edge costs --  |g 9.3.4.  |t Acyclic graphs --  |g 9.3.5.  |t All-pairs shortest path --  |g 9.3.5.  |t Shortest path example --  |g 9.4.  |t Network flow problems --  |g 9.4.1. A  |t simple maximum-flow algorithm --  |g 9.5.  |t Applications of depth-first search --  |g 9.6.1.  |t Undirected graphs --  |g 9.6.2.  |t Bioconnectivity --  |g 9.6.3.  |t Euler circuits --  |g 9.6.4.  |t Directed graphs --  |g 9.6.5.  |t Finding strong components --  |g 9.7.  |t Introduction to NP-completeness --  |g 9.7.1.  |t Easy vs. hard --  |g 9.7.2. The  |t class NP --  |g 9.7.3.  |t NP-complete problems --  |t Summary --  |t Exercises --  |t References -- 
505 0 0 |g Chapter 10.  |t Algorithm design techniques --  |g 10.1.  |t Algorithm design techniques --  |g 10.1.  |t Greedy algorithms --  |g 10.1.1. A  |t simple scheduling problem --  |g 10.1.2.  |t Huffman codes --  |g 10.1.3.  |t Approximate bin packing --  |g 10.2.  |t Divide and conquer --  |g 10.2.1.  |t Running time of divide-and-conquer algorithms --  |g 10.2.1.  |t Closest-points problem --  |g 10.2.3. The  |t selection problem --  |g 10.2.4.  |t Theoretical improvements for arithmetic problems --  |g 10.3.  |t Dynamic programming --  |g 10.3.1.  |t Using a table instead of recursion --  |g 10.3.2.  |t Ordering matrix multiplications --  |g 10.3.3.  |t Optimal binary search tree --  |g 10.3.4.  |t All-pairs shortest path --  |g 10.4.  |t Randomized algorithms --  |g 10.4.1.  |t Random-number generators --  |g 10.4.2.  |t Skip lists --  |g 10.4.3.  |r Primality testing --  |g 10.5.  |t Backtracking algorithms --  |g 10.5.1. The  |t turnpike reconstruction problem --  |g 10.5.2.  |t Games --  |t Summary --  |t exercises --  |t References -- 
505 0 0 |g Chapter 11.  |t Amortized analysis --  |g 11.1. An  |t unrelated puzzle --  |g 11.2.  |t Binomial queues --  |g 11.3.  |t Skew heaps --  |g 11.4.  |t Fibonacci heaps --  |g 11.4.1.  |t Cutting nodes in leftist heaps --  |g 11.4.2.  |t Lazy merging for binomial queues --  |g 11.4.3. The  |t Fibonacci hap operations --  |g 11.4.4.  |t Proof of the time bound --  |g 11.5.  |t Splay trees --  |t Summary --  |t Exercises --  |t References -- 
505 0 0 |g Chapter 12.  |t Advanced data structures and implementation --  |g 12.1.  |t Top-down splay trees --  |g 12.2.  |t Red-black trees --  |g 12.2.1.  |t Bottom-up insertion --  |g 12.2.2.  |t Top-down red-black trees --  |g 12.2.3.  |t To-down deletion --  |g 12.4.  |t Treaps --  |g 12.4.  |t Suffix arrays and suffix trees --  |g 12.4.1.  |t Suffix arrays --  |g 12.4.2.  |t Suffix trees --  |g 12.4.3.  |t Linear-time construction of suffix arrays and suffix trees --  |g 12.5.  |t k-d trees --  |g 12.6.  |t Pairing heaps --  |t Summary --  |t Exercises --  |t References -- 
505 0 0 |g Appendix A.  |t Separate compilation of class templates --  |g A.1.  |t Everything in the header --  |g A.2.  |t Explicit instantiation --  |t Index. 
520 |a Data Structures and Algorithm Analysis in C++ is an advanced algorithms book that bridges the gap between traditional CS2 and Algorithms Analysis courses. 
520 |a As the speed and power of computers increases, so does the need for effective programming and algorithm analysis. By approaching these skills in tandem, Mark Allen Weiss teaches readers to develop well-constructed, maximally efficient programs using the C++ programming language. 
520 |a This book explains topics from binary heaps to sorting to NP-completeness, and dedicates a full chapter to amortized analysis and advanced data structures and their implementation. Figures and examples illustrating successive stages of algorithms contribute to Weiss' careful, rigorous and in-depth analysis of each type of algorithm. 
520 |a Mark Weiss uses C++ to provide a smooth introduction to object-oriented design for programmers competent in one other language. Using C++, the book delivers a series of carefully developed examples which illustrate the important concepts of object orientation alongside its main theme of data structures. 
650 0 |a C++ (Computer program language) 
650 0 |a Data structures (Computer science) 
650 0 |a Computer algorithms. 
830 0 |a Always learning. 
999 1 0 |i 34d87afe-3fd7-4d01-a7de-130fda976564  |l 990080505470104303  |s US-MNMN  |m data_structures_and_algorithm_analysis_in_c________________________________2014____4__pearsa________________________________________weiss__mark_allen__________________p 
999 1 1 |l 990080505470104303  |s ISIL:US-MNMN  |i Normandale Community College  |t BKS  |a GEN  |c QA76.73.C153 W45 2014  |b 30205004032222  |x BOOK  |y 2313685190004303  |p LOANABLE