力扣labuladong——一刷day06

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

文章目录

  • 前言
  • [一、力扣322. 零钱兑换](#一、力扣322. 零钱兑换)
  • [二、力扣509. 斐波那契数](#二、力扣509. 斐波那契数)
  • [三、力扣46. 全排列](#三、力扣46. 全排列)
  • [四、力扣51. N 皇后](#四、力扣51. N 皇后)
  • [五、力扣52. N 皇后 II](#五、力扣52. N 皇后 II)

前言


一、力扣322. 零钱兑换

java 复制代码
class Solution {
    public int coinChange(int[] coins, int amount) {
        int[] dp = new int[amount+1];
        Arrays.fill(dp,Integer.MAX_VALUE);
        dp[0] = 0;
        for(int i = 0; i < coins.length; i ++){
            for(int j = coins[i]; j <= amount; j ++){
                if(dp[j-coins[i]] != Integer.MAX_VALUE){
                    dp[j] = Math.min(dp[j],dp[j-coins[i]] + 1);//最大值加1就会变成负数了
                }
            }
        }
        return dp[amount] == Integer.MAX_VALUE ? -1:dp[amount];
    }
}

二、力扣509. 斐波那契数

java 复制代码
class Solution {
    public int fib(int n) {
        if(n == 0 || n == 1){
            return n;
        }
        int[] dp = new int[n+1];
        dp[0] = 0;
        dp[1] = 1;
        for(int i = 2; i <= n; i ++){
            dp[i] = dp[i-1] + dp[i-2];
        }
        return dp[n];
    }
}

三、力扣46. 全排列

java 复制代码
class Solution {
    List<List<Integer>> res = new ArrayList<>();
    List<Integer> path = new ArrayList<>();
    boolean[] flag;
    public List<List<Integer>> permute(int[] nums) {
        flag = new boolean[nums.length];
        fun(nums);
        return res;
    }
    public void fun(int[] nums){
        if(path.size() == nums.length){
            res.add(new ArrayList<>(path));
            return;
        }
        for(int i = 0; i < nums.length; i ++){
            if(flag[i] == true){
                continue;
            }
            flag[i] = true;
            path.add(nums[i]);
            fun(nums);
            flag[i] = false;
            path.remove(path.size()-1);
        }
    }
}

四、力扣51. N 皇后

java 复制代码
class Solution {
    List<List<String>> res = new ArrayList<>();
    public List<List<String>> solveNQueens(int n) {
        char[][] ch = new char[n][n];
        for(int i = 0; i < n; i ++){
            for(int j = 0; j < n; j ++){
                ch[i][j] = '.';
            }
        }
        fun(ch,0,n);
        return res;
    }
    public void fun(char[][] ch, int depth,int n){
        if(depth == n){
            List<String> path = new ArrayList<>();
            for(char[] temp : ch){
                path.add(new String(temp));
            }
            res.add(path);
            return;
        }
        for(int i = 0; i < n; i ++){
            if(flag(ch, depth,i,n)){
                ch[depth][i] = 'Q';
                fun(ch,depth+1, n);
                ch[depth][i] = '.';
            }
        }
    }
    public boolean flag(char[][] ch, int row, int col, int n){
        //判断行
        for(int i = 0; i < col;i ++){
            System.out.println("row = " + row + " __ col = " + i);
            if(ch[row][i] == 'Q'){
                return false;
            }
        }
        //判断列
        for(int i = 0; i < row; i ++){
            if(ch[i][col] == 'Q'){
                return false;
            }
        }
        //判断45°
        for(int i = row, j = col; i >= 0 && j >= 0 ; i --, j --){
            if(ch[i][j] == 'Q'){
                return false;
            }
        }
        //判断135度
        for(int i = row, j = col; i >= 0 && j < n; i --, j ++){
            if(ch[i][j] == 'Q'){
                return false;
            }
        }
        return true;
    }
}

五、力扣52. N 皇后 II

java 复制代码
class Solution {
    int res = 0;
    public int totalNQueens(int n) {
        char[][] ch = new char[n][n];
        for(int i = 0; i < n; i ++){
            for(int j = 0; j < n; j ++){
                ch[i][j] = '.';
            }
        }
        fun(ch,0,n);
        return res;
    }
    public void fun(char[][] ch, int depth,int n){
        if(depth == n){
            res ++;
            return;
        }
        for(int i = 0; i < n; i ++){
            if(flag(ch, depth,i,n)){
                ch[depth][i] = 'Q';
                fun(ch,depth+1, n);
                ch[depth][i] = '.';
            }
        }
    }
    public boolean flag(char[][] ch, int row, int col, int n){
        //判断行
        for(int i = 0; i < col;i ++){
            System.out.println("row = " + row + " __ col = " + i);
            if(ch[row][i] == 'Q'){
                return false;
            }
        }
        //判断列
        for(int i = 0; i < row; i ++){
            if(ch[i][col] == 'Q'){
                return false;
            }
        }
        //判断45°
        for(int i = row, j = col; i >= 0 && j >= 0 ; i --, j --){
            if(ch[i][j] == 'Q'){
                return false;
            }
        }
        //判断135度
        for(int i = row, j = col; i >= 0 && j < n; i --, j ++){
            if(ch[i][j] == 'Q'){
                return false;
            }
        }
        return true;
    }
}
相关推荐
大头an3 分钟前
Spring事务隔离级别全解析:从读未提交到序列化
java
努力学算法的蒟蒻9 分钟前
day11(11.11)——leetcode面试经典150
算法·leetcode·面试
im_AMBER11 分钟前
Leetcode 51
笔记·学习·算法·leetcode·深度优先
做怪小疯子18 分钟前
LeetCode 热题 100——哈希——字母异位词分组
算法·leetcode·哈希算法
大隐隐于野32 分钟前
从零开始理解和编写LLM中的KV缓存
java·缓存·llm
DKunYu1 小时前
1.多线程初阶
java·开发语言
Einsail1 小时前
贪心算法,优先队列(大小根堆使用)
算法·贪心算法
小欣加油1 小时前
leetcode 474 一和零
c++·算法·leetcode·职场和发展·动态规划
Ace_31750887761 小时前
京东商品详情接口深度解析:从反爬绕过到数据结构化重构
数据结构·python·重构
尤利乌斯.X1 小时前
在Java中调用MATLAB函数的完整流程:从打包-jar-到服务器部署
java·服务器·python·matlab·ci/cd·jar·个人开发