Added efficient string searching algorithms.

This commit is contained in:
John Washam
2016-06-17 22:54:11 -07:00
parent 06709c29b7
commit 7d604ee32a

View File

@ -523,6 +523,14 @@ Additional (not suggested by Google but I added):
## ##
########################################################################################## ##########################################################################################
String search algorithm:
Knuth-Morris-Pratt (KMP):
- https://en.wikipedia.org/wiki/Knuth%E2%80%93Morris%E2%80%93Pratt_algorithm
- https://www.youtube.com/watch?v=2ogqPWJSftE
BoyerMoore string search algorithm
- https://en.wikipedia.org/wiki/Boyer%E2%80%93Moore_string_search_algorithm
- https://www.youtube.com/watch?v=xYBM0_dChRE
########################################################################################## ##########################################################################################
## Videos: ## Videos:
########################################################################################## ##########################################################################################