GoodLuck·HQ
GoodLuck·HQ
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
GoodLuck·HQ的博客
全部文章
(共4篇)
java
public class Solution { public void solveSudoku(char[][] board) { dfs(board,0,0); } boolean dfs(char[][] board,int x,int y){ ...
2020-10-08
0
657
Java回溯法解法
import java.util.*; public class Solution { public ArrayList<ArrayList<Integer>> combinationSum2(int[] num, int target) { Arra...
数组中找到和为目标数的所有候选数组合
2020-10-08
4
957
Java解决:递归和常规解法
方法1:简单递归方式 public class TreeNode{ public int maxDepth(TreeNode root){ if(root==null)return 0; int leftDepth = maxDepth(root.left);...
二叉树深度
2020-10-07
4
808
替换空格
请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。 public class Solution{ public String replaceSpace(StringBuffer...
2020-04-29
0
556