mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
d7a9869dce
* add boyer moore algorithm implementation * add a one-line description of what the library/header is for * fix comments pattern and make tests static * add documentation * add namespaces * fix all warnings for clang-tydy.exe <filename> * Change lib from limits to climits (CHAR_MAX macro) Co-authored-by: David Leal <halfpacho@gmail.com> * Add breif description of boyer-moore algorithm * Fix styling * Add needed documentation * my commit * fix type of index_pattern * Fix clang-warnings * chore: apply suggestions from code review * chore: add print message after tests * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * fix: variable name * Update strings/boyer_moore.cpp Co-authored-by: David Leal <halfpacho@gmail.com> --------- Co-authored-by: David Leal <halfpacho@gmail.com> Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
92 lines
2.2 KiB
JSON
92 lines
2.2 KiB
JSON
{
|
|
"C_Cpp.clang_format_style": "{ BasedOnStyle: Google, UseTab: Never, IndentWidth: 4, TabWidth: 4, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: true, ColumnLimit: 80, AccessModifierOffset: -3, AlignConsecutiveMacros: true }",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"editor.formatOnPaste": true,
|
|
"files.associations": {
|
|
"array": "cpp",
|
|
"atomic": "cpp",
|
|
"*.tcc": "cpp",
|
|
"bitset": "cpp",
|
|
"cctype": "cpp",
|
|
"chrono": "cpp",
|
|
"cinttypes": "cpp",
|
|
"clocale": "cpp",
|
|
"cmath": "cpp",
|
|
"complex": "cpp",
|
|
"cstdarg": "cpp",
|
|
"cstddef": "cpp",
|
|
"cstdint": "cpp",
|
|
"cstdio": "cpp",
|
|
"cstdlib": "cpp",
|
|
"cstring": "cpp",
|
|
"ctime": "cpp",
|
|
"cwchar": "cpp",
|
|
"cwctype": "cpp",
|
|
"deque": "cpp",
|
|
"list": "cpp",
|
|
"unordered_map": "cpp",
|
|
"unordered_set": "cpp",
|
|
"vector": "cpp",
|
|
"exception": "cpp",
|
|
"algorithm": "cpp",
|
|
"functional": "cpp",
|
|
"iterator": "cpp",
|
|
"map": "cpp",
|
|
"memory": "cpp",
|
|
"memory_resource": "cpp",
|
|
"numeric": "cpp",
|
|
"optional": "cpp",
|
|
"random": "cpp",
|
|
"ratio": "cpp",
|
|
"set": "cpp",
|
|
"string": "cpp",
|
|
"string_view": "cpp",
|
|
"system_error": "cpp",
|
|
"tuple": "cpp",
|
|
"type_traits": "cpp",
|
|
"utility": "cpp",
|
|
"fstream": "cpp",
|
|
"initializer_list": "cpp",
|
|
"iomanip": "cpp",
|
|
"iosfwd": "cpp",
|
|
"iostream": "cpp",
|
|
"istream": "cpp",
|
|
"limits": "cpp",
|
|
"new": "cpp",
|
|
"ostream": "cpp",
|
|
"sstream": "cpp",
|
|
"stdexcept": "cpp",
|
|
"streambuf": "cpp",
|
|
"typeinfo": "cpp",
|
|
"valarray": "cpp",
|
|
"bit": "cpp",
|
|
"charconv": "cpp",
|
|
"compare": "cpp",
|
|
"concepts": "cpp",
|
|
"format": "cpp",
|
|
"forward_list": "cpp",
|
|
"ios": "cpp",
|
|
"locale": "cpp",
|
|
"queue": "cpp",
|
|
"stack": "cpp",
|
|
"xfacet": "cpp",
|
|
"xhash": "cpp",
|
|
"xiosbase": "cpp",
|
|
"xlocale": "cpp",
|
|
"xlocbuf": "cpp",
|
|
"xlocinfo": "cpp",
|
|
"xlocmes": "cpp",
|
|
"xlocmon": "cpp",
|
|
"xlocnum": "cpp",
|
|
"xloctime": "cpp",
|
|
"xmemory": "cpp",
|
|
"xstddef": "cpp",
|
|
"xstring": "cpp",
|
|
"xtr1common": "cpp",
|
|
"xtree": "cpp",
|
|
"xutility": "cpp",
|
|
"climits": "cpp"
|
|
}
|
|
}
|