mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-05-03 05:52:55 +08:00
feat: add Sublist Search Algorithm (#1513)
* feat: add sublist search algorithm * updating DIRECTORY.md * clang-format and clang-tidy fixes fore59bc3bf* Update search/sublist_search.cpp header docs Co-authored-by: David Leal <halfpacho@gmail.com> * Update search/sublist_search.cpp docs Co-authored-by: David Leal <halfpacho@gmail.com> * Update docs search/sublist_search.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update docs search/sublist_search.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update minor docs in search/sublist_search.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * made test function non static Co-authored-by: David Leal <halfpacho@gmail.com> * test docs updated Co-authored-by: David Leal <halfpacho@gmail.com> * namespaces added for search algo, docs added for test cases * [feat/fix/docs]: Perform some necessary changes * clang-format and clang-tidy fixes for5a02b336* test cases docs added, merge fixed * clang-format and clang-tidy fixes forbe0160b4* one liner docs added * clang-format and clang-tidy fixes for95b362f3* some final docs fixes * clang-format and clang-tidy fixes for798972e9* Apply suggestions from code review * Apply suggestions from code review * Apply suggestions from code review * docs updated for one line docs * clang-format and clang-tidy fixes foraebae1df* added one liner docs * clang-format and clang-tidy fixes forf6913b75* Update search/sublist_search.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update search/sublist_search.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * clang-format and clang-tidy fixes for66d1b87f* Update search/sublist_search.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update search/sublist_search.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Apply suggestions from code review * clang-format and clang-tidy fixes fordc5b0c6c* Apply suggestions from code review * clang-format and clang-tidy fixes for6436932f* Apply suggestions from code review * clang-format and clang-tidy fixes for35f39b57* Update docs search/sublist_search.cpp Co-authored-by: David Leal <halfpacho@gmail.com> Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
@@ -268,6 +268,7 @@
|
||||
* [Linear Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/linear_search.cpp)
|
||||
* [Median Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/median_search.cpp)
|
||||
* [Saddleback Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/saddleback_search.cpp)
|
||||
* [Sublist Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/sublist_search.cpp)
|
||||
* [Ternary Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/ternary_search.cpp)
|
||||
* [Text Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/text_search.cpp)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user