This document provides an overview of the Knuth-Morris-Pratt substring search algorithm. It defines the algorithm, describes its history and key components including the prefix function and KMP matcher. An example showing the step-by-step workings of the algorithm on a text and pattern is provided. The algorithm's linear runtime complexity of O(n+m) is compared to other string matching algorithms. Real-world applications including DNA sequence analysis and search engines are discussed.