栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

[Leetcode] 动态规划类java题解

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

[Leetcode] 动态规划类java题解

139. 单词拆分

public class WordBreak {

    public boolean wordBreak(String s, List wordDict) {
        Set wordSet = new HashSet(wordDict);
        boolean[] dp = new boolean[s.length() + 1];  //Boolean会抛空指针
        dp[0] = true;
        for (int i = 1; i <= s.length(); i++) {
            for (int j = 0; j < i; j++) {
                if (dp[j] && wordSet.contains(s.substring(j, i))) {
                    dp[i] = true;
                    break;
                }
            }
        }
        return dp[s.length()];
    }
    
}

152. 乘积最大子数组

class Solution {
     public int maxProduct(int[] nums) {

        int  n = nums.length;
        int[] dp = new int[n];
        dp[0]=nums[0];
        int result  = nums[0], nmax = nums[0], nmin = nums[0];
        for(int i = 1;i 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/860665.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号