mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-13 15:37:06 +08:00
[fix]: dynamic_programming/cut_rod.cpp does not compile (#1085)
* Create largestBST_in_binary_tree.cpp * formatting filenamesb15bd1ea* updating DIRECTORY.md * Update DIRECTORY.md * updating DIRECTORY.md * fixed compilation error in cut_rod.cpp code * fixed clang-tidy warnings * Delete largestbst_in_binary_tree.cpp * removed compilation errors * Update cut_rod.cpp * added requested changes in the code * added testing * Update DIRECTORY.md * Delete largestbst_in_binary_tree.cpp * added namespaces * added kadane2 algorithm * Update dynamic_programming/kadane2.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update dynamic_programming/kadane2.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update dynamic_programming/cut_rod.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update dynamic_programming/cut_rod.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update dynamic_programming/cut_rod.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * added right funtion name in comments * Update dynamic_programming/cut_rod.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update dynamic_programming/cut_rod.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * added documentation for template parameter * checking for github actions * clang-format and clang-tidy fixes fordb70ae2fCo-authored-by: anishmo99 <ani10sh@gmail.com> Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Anish Mookherjee <59157112+anishmo99@users.noreply.github.com> Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
@@ -27,7 +27,8 @@
|
||||
namespace dynamic_programming {
|
||||
/**
|
||||
* @namespace kadane
|
||||
* @brief Functions for [Kadane](https://en.wikipedia.org/wiki/Kadane%27s_algorithm) algorithm.
|
||||
* @brief Functions for
|
||||
* [Kadane](https://en.wikipedia.org/wiki/Kadane%27s_algorithm) algorithm.
|
||||
*/
|
||||
namespace kadane {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user