IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> LeetCode 36~40 -> 正文阅读

[数据结构与算法]LeetCode 36~40

前言

本文隶属于专栏《LeetCode 刷题汇总》,该专栏为笔者原创,引用请注明来源,不足和错误之处请在评论区帮忙指出,谢谢!

本专栏目录结构请见LeetCode 刷题汇总

正文

幕布

在这里插入图片描述

幕布链接

36. 有效的数独

题解

Short+Simple Java using Strings

set,j/3+b+i/3,左j右i

import scala.collection.mutable.Set
object Solution {
    def isValidSudoku(board: Array[Array[Char]]): Boolean = {
        val set = Set[String]()
        for(i <- 0 to 8; j <- 0 to 8 if(board(i)(j) != '.')){
            val b = "(" + board(i)(j) + ")"
            if(!set.add(b + i) || !set.add(j + b) || !set.add(i / 3 + b + j / 3)) return false
        }
        true
    }
}

37. 解数独

题解

官方题解

行列boolean二维数组,块 boolean 3 维数组,回溯,appear

public class Solution {
    //(i,j)=true表示数字j+1在第i+1行是否出现,同一行不可重复
    private boolean[][] rows = new boolean[9][9];
    //(i,j)=true表示数字j+1在第i+1列是否出现,同一列不可重复
    private boolean[][] cols = new boolean[9][9];
    //(i,j,k)=true表示数字k+1在第i+1横块第j+1竖块是否出现,同一3*3块内不可重复
    private boolean[][][] blocks = new boolean[3][3][9];
    //表示当前解法是否有效
    private boolean valid = false;
    //用来存储空白格位置的列表,列表里面每个元素表示空白格坐标组成的一维数组,方便递归
    private List<int[]> spaces = new ArrayList<int[]>();

    /**
     * 解数独
     *
     * @param board 数独
     */
    public void solveSudoku(char[][] board) {
        for (int i = 0; i < 9; ++i) {
            for (int j = 0; j < 9; ++j) {
                //判断是否是空白格
                if (board[i][j] == '.') {
                    spaces.add(new int[]{i, j});
                } else {
                    appear(i, j, board[i][j] - '1', true);
                }
            }
        }
        //此时已经知道哪些行列块哪些数字都已经出现,开始解决数独中的空白格
        backtracking(board, 0);
    }

    /**
     * 回溯解决数独中的空白格
     *
     * @param board 数独
     * @param pos   空白格数组索引
     */
    private void backtracking(char[][] board, int pos) {
        //终止条件,pos == spaces.length 说明此时空白格都已经解决了,结果必然有效
        if (pos == spaces.size()) {
            valid = true;
            return;
        }
        //获取当前空白格坐标
        int[] space = spaces.get(pos);
        int i = space[0], j = space[1];
        //从1到9一个个判断,并且需要满足当前还未求得解
        for (int digit = 0; digit < 9 && !valid; ++digit) {
            //如果当前行当前列当前块都不存在该数字
            if (!rows[i][digit] && !cols[j][digit] && !blocks[i / 3][j / 3][digit]) {
                //我们先让这个数字出现
                appear(i, j, digit, true);
                board[i][j] = (char) (digit + '1');
                //接着进行回溯
                backtracking(board, pos + 1);
                //回溯最后一定要记得恢复
                appear(i, j, digit, false);
            }
        }
    }

    /**
     * 表示坐标为 (i,j) 时数字 digit+1 是否已经出现
     *
     * @param i     第i+1行
     * @param j     第j+1列
     * @param digit 数字digit+1
     * @param flag  是否出现,默认已经出现
     */
    private void appear(int i, int j, int digit, boolean flag) {
        rows[i][digit] = cols[j][digit] = blocks[i / 3][j / 3][digit] = flag;
    }
}

38. 外观数列

题解

官方题解

递归+sb

class Solution {
    public String countAndSay(int n) {
        if (n == 1) {
            return "1";
        }
        String str = countAndSay(n - 1);
        char cur = str.charAt(0);
        int count = 0;
        StringBuilder sb = new StringBuilder(str.length());
        for (int i = 0; i < str.length(); i++) {
            if (str.charAt(i) != cur) {
                sb.append(count).append(cur);
                cur = str.charAt(i);
                count = 0;
            }
            count++;
        }
        sb.append(count).append(cur);
        return sb.toString();
    }
}

39. 组合总和

题解

官方题解

回溯

public class Solution {
    public List<List<Integer>> combinationSum(int[] candidates, int target) {
        Arrays.sort(candidates);
        List<List<Integer>> list = new ArrayList<>();
        backtrack(list, new ArrayList<>(), candidates, target, 0);
        return list;
    }

    private void backtrack(List<List<Integer>> list, List<Integer> tempList, int[] nums, int remain, int start) {
        if (remain > 0) {
            for (int i = start; i < nums.length; i++) {
                tempList.add(nums[i]);
                backtrack(list, tempList, nums, remain - nums[i], i);
                tempList.remove(tempList.size() - 1);
            }
        } else if (remain == 0) {
            list.add(new ArrayList<>(tempList));
        }
    }
}

40. 组合总和 II

题解

官方题解

回溯+continue

class Solution {
    public List<List<Integer>> combinationSum2(int[] cand, int target) {
        Arrays.sort(cand);
        List<List<Integer>> res = new ArrayList<List<Integer>>();
        List<Integer> path = new ArrayList<Integer>();
        dfs(cand, 0, target, path, res);
        return res;
    }
    void dfs(int[] cand, int cur, int target, List<Integer> path, List<List<Integer>> res) {
        if (target == 0) {
            res.add(new ArrayList(path));
            return ;
        }
        if (target < 0) return;
        for (int i = cur; i < cand.length; i++){
            if (i > cur && cand[i] == cand[i-1]) continue;
            path.add(path.size(), cand[i]);
            dfs(cand, i+1, target - cand[i], path, res);
            path.remove(path.size()-1);
        }
    }
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2021-10-23 12:44:52  更:2021-10-23 12:45:41 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 8:34:40-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码