From 84985ecf116903b5ccd71a2a8d3a8bef3f6b3e8c Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Sat, 20 May 2023 01:28:48 +0000 Subject: [PATCH] Documentation for 4f4585d4c1e64251a5dd28a03ce330ae85ce8c2c --- ...ongest__palindromic__subsequence_8cpp.html | 149 ++++++------------ .../longest__palindromic__subsequence_8cpp.js | 4 +- ...f863610aebbc218f90a7adfde240cb4_cgraph.map | 4 - ...f863610aebbc218f90a7adfde240cb4_cgraph.md5 | 1 - ...f863610aebbc218f90a7adfde240cb4_cgraph.svg | 36 ----- ...8dca7b867074164d5f45b0f3851269d_cgraph.map | 5 + ...8dca7b867074164d5f45b0f3851269d_cgraph.md5 | 1 + ...dca7b867074164d5f45b0f3851269d_cgraph.svg} | 24 +-- ...1a3968e7947464bee7714f6d43b7002_cgraph.map | 5 - ...1a3968e7947464bee7714f6d43b7002_cgraph.md5 | 1 - ...66f6b31b5ad750f1fe042a706a4e3d4_cgraph.map | 8 +- ...66f6b31b5ad750f1fe042a706a4e3d4_cgraph.md5 | 2 +- ...66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg | 26 +-- dd/d24/namespacedynamic__programming.html | 86 ++++++++++ ...e9f45b6e30ee187509da2d1d0093412_cgraph.map | 4 + ...e9f45b6e30ee187509da2d1d0093412_cgraph.md5 | 1 + ...e9f45b6e30ee187509da2d1d0093412_cgraph.svg | 36 +++++ dir_8a20dd5bfd5341a725342bf72b6b686f.html | 2 +- files.html | 2 +- globals_func_l.html | 1 - globals_func_t.html | 2 +- globals_l.html | 1 - globals_t.html | 2 +- namespacemembers.html | 1 + namespacemembers_func.html | 1 + namespaces_dup.js | 1 + navtreedata.js | 4 +- navtreeindex0.js | 26 +-- navtreeindex1.js | 12 +- navtreeindex10.js | 6 +- navtreeindex11.js | 28 ++-- navtreeindex12.js | 14 +- navtreeindex13.js | 9 +- navtreeindex2.js | 16 +- navtreeindex3.js | 2 +- navtreeindex4.js | 8 +- navtreeindex5.js | 16 +- navtreeindex6.js | 34 ++-- navtreeindex7.js | 26 +-- navtreeindex8.js | 38 ++--- navtreeindex9.js | 6 +- search/all_15.js | 2 +- search/all_d.js | 2 +- search/functions_14.js | 2 +- search/functions_c.js | 2 +- 45 files changed, 346 insertions(+), 313 deletions(-) delete mode 100644 d0/d77/longest__palindromic__subsequence_8cpp_a4f863610aebbc218f90a7adfde240cb4_cgraph.map delete mode 100644 d0/d77/longest__palindromic__subsequence_8cpp_a4f863610aebbc218f90a7adfde240cb4_cgraph.md5 delete mode 100644 d0/d77/longest__palindromic__subsequence_8cpp_a4f863610aebbc218f90a7adfde240cb4_cgraph.svg create mode 100644 d0/d77/longest__palindromic__subsequence_8cpp_aa8dca7b867074164d5f45b0f3851269d_cgraph.map create mode 100644 d0/d77/longest__palindromic__subsequence_8cpp_aa8dca7b867074164d5f45b0f3851269d_cgraph.md5 rename d0/d77/{longest__palindromic__subsequence_8cpp_ae1a3968e7947464bee7714f6d43b7002_cgraph.svg => longest__palindromic__subsequence_8cpp_aa8dca7b867074164d5f45b0f3851269d_cgraph.svg} (51%) delete mode 100644 d0/d77/longest__palindromic__subsequence_8cpp_ae1a3968e7947464bee7714f6d43b7002_cgraph.map delete mode 100644 d0/d77/longest__palindromic__subsequence_8cpp_ae1a3968e7947464bee7714f6d43b7002_cgraph.md5 create mode 100644 dd/d24/namespacedynamic__programming_afe9f45b6e30ee187509da2d1d0093412_cgraph.map create mode 100644 dd/d24/namespacedynamic__programming_afe9f45b6e30ee187509da2d1d0093412_cgraph.md5 create mode 100644 dd/d24/namespacedynamic__programming_afe9f45b6e30ee187509da2d1d0093412_cgraph.svg diff --git a/d0/d77/longest__palindromic__subsequence_8cpp.html b/d0/d77/longest__palindromic__subsequence_8cpp.html index 249534c3b..212498cd4 100644 --- a/d0/d77/longest__palindromic__subsequence_8cpp.html +++ b/d0/d77/longest__palindromic__subsequence_8cpp.html @@ -98,12 +98,13 @@ $(document).ready(function(){initNavTree('d0/d77/longest__palindromic__subsequen
Program to find the Longest Palindormic Subsequence of a string. +
Program to find the Longest Palindormic Subsequence of a string. More...
#include <cassert>#include <string>+Namespaces | |
| namespace | dynamic_programming |
| Dynamic Programming algorithms. | |
Functions | |
| std::string | lps (const std::string &a) |
| void | test () |
| std::string | dynamic_programming::lps (const std::string &a) |
| Function that returns the longest palindromic subsequence of a string. | |
| static void | test () |
| Self-test implementations. | |
| int | main () |
| Main Function. | |
Program to find the Longest Palindormic Subsequence of a string.
+Program to find the Longest Palindormic Subsequence of a string.
Palindrome string sequence of characters which reads the same backward as forward Subsequence is a sequence that can be derived from another sequence by deleting some or no elements without changing the order of the remaining elements.
| std::string lps | -( | -const std::string & | -a | ) | -- |
for assert for std::string for std::vector Function that returns the longest palindromic subsequence of a string
-Main Function
-Main Function.
+
|
+ +static | +
Test function
-Self-test implementations.
+| std::string dynamic_programming::lps | +( | +const std::string & | +a | ) | ++ |
Function that returns the longest palindromic subsequence of a string.
+| a | string whose longest palindromic subsequence is to be found |