Hashing and SortingCovers hashing, sorting, extendible hashing, linear hashing, and external sorting.
Hash Functions and TablesIntroduces hashing tables, including the Birthday Lemma, Direct-Address Tables, collisions, and Chained-Hash-Search.
Hash Tables AnalysisCovers the analysis of hash tables, including search operations and expected collisions.
Implementation of Sets (II)Covers the implementation of sets using a naive approach and discusses the inefficiencies of the S list 7 class.
Hashing & SortingExplores hashing techniques like static, extendible, and linear hashing, along with sorting methods such as external merge sort and B+ trees.
Dictionary OperationsCovers operations and methods related to dictionaries in Python, including creating, updating, and handling key errors.