mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-07-11 22:46:11 +08:00
feat: add shortest common super-sequence algorithm (#1030)
* main cpp file for shortest common supersequence * fixing reverse function bug * converting c style array to std::vector * removing namespace directives * adding documentation and test cases * namespace declarations * update shortest_common_supersequence.cpp * update shortest_common_supersequence.cpp * Update dynamic_programming/shortest_common_supersequence.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update dynamic_programming/shortest_common_supersequence.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update dynamic_programming/shortest_common_supersequence.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * update shortest_common_supersequence.cpp * update shortest_common_supersequence.cpp * update shortest_common_supersequence.cpp * Update dynamic_programming/shortest_common_supersequence.cpp Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com> * updating DIRECTORY.md Co-authored-by: David Leal <halfpacho@gmail.com> Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@@ -67,6 +67,7 @@
|
||||
* [Longest Increasing Subsequence (Nlogn)](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/longest_increasing_subsequence_(nlogn).cpp)
|
||||
* [Matrix Chain Multiplication](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/matrix_chain_multiplication.cpp)
|
||||
* [Searching Of Element In Dynamic Array](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/searching_of_element_in_dynamic_array.cpp)
|
||||
* [Shortest Common Supersequence](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/shortest_common_supersequence.cpp)
|
||||
* [Tree Height](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/tree_height.cpp)
|
||||
|
||||
## Geometry
|
||||
|
||||
Reference in New Issue
Block a user