About 381,000 results
Open links in new tab
  1. Applications of String Matching Algorithms - GeeksforGeeks

    Apr 23, 2025 · String matching is a process of finding a smaller string inside a larger text. For example, searching for the word "apple" in a paragraph. It is useful in areas like text search, …

  2. String Matching Algorithm

    Jun 29, 2023 · In this article, we will delve into different string matching algorithms, starting with the simple brute force method and progressing towards more advanced techniques. Given a …

  3. Algorithms for String Manipulation and Matching - Medium

    Nov 30, 2023 · In the realm of computer science, string manipulation, and matching algorithms play a pivotal role in processing and analyzing textual data. These algorithms are designed to …

  4. String Matching Algorithms - CodeCrucks

    Jul 10, 2022 · String matching operation is a core part in many text processing applications. The objective of this algorithm is to find pattern P from given text T. Typically |P|<< |T|. In the …

  5. String Matching Algorithms Lecture Notes - studylib.net

    Lecture notes on string matching algorithms, including Naive, Rabin-Karp, and KMP. Covers complexity classes. For university-level computer science.

  6. ... try to find places where one or several strings (also... may be a usual human alphabet, for example, the Latin letters a through z or Greek letters through ! Other applications may include …

  7. Best string matching algorithms in Machine Learning

    Feb 4, 2025 · Examples of string matching algorithms : A prime example of a string matching algorithm frequently used in machine learning is the “ Knuth-Morris-Pratt (KMP) algorithm ” …

  8. Common string-matching algorithms: theoretical and practical ...

    Sep 1, 2019 · Finding a string within another string is something you do quite often when programming. In this post, I will discuss some well-known string-matching algorithms, present …

  9. •The Rabin-Karp algorithm calculates a hash value for the pattern, and for each M-character subsequence of text to be compared. •If the hash values are unequal, the algorithm will …

  10. In string matching problems, it is required to find the occurrences of a pattern in a text. These problems find applications in text processing, text-editing, computer security, and DNA …

Refresh