update at 2021-11-01 10:07:28 by ehlxr

master
ehlxr 2021-11-01 10:07:28 +08:00
parent d51106271e
commit 78d8ad252b
1 changed files with 3 additions and 3 deletions

View File

@ -22,17 +22,17 @@
* THE SOFTWARE.
*/
package io.github.ehlxr.algorithm;
package io.github.ehlxr.algorithm.dp;
/**
* arr 使
*
* <p>
* https://cdn.jsdelivr.net/gh/0vo/oss/images/dp.jpg
*
* @author ehlxr
* @since 2021-10-31 22:46.
*/
public class DynamicProgramming {
public class FindMaxSum {
public static int recOpt(int[] arr, int i) {
if (i == 0) {
return arr[0];