Revert "feat: update CMake version to 3.26.4 (#2486)"

This reverts commit 2d492834b1.
This commit is contained in:
David Leal
2023-06-20 15:47:41 -06:00
committed by GitHub
parent 2d492834b1
commit d40bf6430c
4 changed files with 39 additions and 42 deletions

View File

@@ -1,11 +1,9 @@
/**
* @file
* @brief
* The
* [BoyerMoore](https://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string-search_algorithm)
* algorithm searches for occurrences of pattern P in text T by performing
* explicit character comparisons at different alignments. Instead of a
* brute-force search of all alignments (of which there are n - m + 1),
* The [BoyerMoore](https://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string-search_algorithm) algorithm searches for occurrences of pattern P in text T by
* performing explicit character comparisons at different alignments. Instead of
* a brute-force search of all alignments (of which there are n - m + 1),
* BoyerMoore uses information gained by preprocessing P to skip as many
* alignments as possible.
*