|
Data Structures & Algorithms Using C#
C# programmers: no more translating data structures from C++ or Java to use in your programs! Mike McMillan provides a tutorial on how to use data structures and algorithms plus the first comprehensive reference for C# implementation of data structures and algorithms found in the .NET Framework library, as well as those developed by the programmer.
The
approach is very practical, using timing tests rather than Big O notation to analyze the efficiency of an approach. Coverage includes array and ArrayLists, linked lists, hash tables, dictionaries, trees, graphs, and sorting and searching algorithms, as well as more advanced algorithms such as probabilistic algorithms and dynamic programming. This is the perfect resource for C# professionals and students alike.
Preface
Chapter 1: An Introduction To Collections, Generics, And The Timing Class
Chapter 2: Arrays And ArrayLists
Chapter 3: Basic Sorting Algorithms
Chapter 4: Basic Searching Algorithms
Chapter 5: Stacks And Queues
Chapter 6: The BitArray Class
Chapter 7: Strings, The String Class, And The StringBuilder Class
Chapter 8: Pattern Matching And Text Processing
Chapter 9: Building Dictionaries: The DictionaryBase Class And The SortedList Class
Chapter 10: Hashing And The Hashtable Class
Chapter 11: Linked Lists
Chapter 12: Binary Trees And Binary Search Trees
Chapter 13: Sets
Chapter 14: Advanced Sorting Algorithms
Chapter 15: Advanced Data Structures And Algorithms For Searching
Chapter 16: Graphs And Graph Algorithms
Chapter 17: Advanced Algorithms
References
Index
|