leetcode题解
不想变秃的gloria
这个作者很懒,什么都没留下…
展开
-
java集合常见用法
数组 int [] a = {1,2,3}; System.out.println("a: "+Arrays.toString(a)); int [] b = new int[]{1,2,3}; System.out.println("b: "+Arrays.toString(b)); int [] c = new int[3]; for(int i=0;i<c.length;c++) { c[i]=i+1; } System.out.println("c: "+Arrays.toStri原创 2021-04-08 16:37:19 · 96 阅读 · 0 评论 -
leetcode-动态规划
目录动态规划斐波那契数列凑零钱剪绳子 动态规划 斐波那契数列 int 32位溢出 class Solution { public int fib(int n) { if(n==0) return 0; else if(n==1||n==2) return 1; else { //0,1,1,2,3, int prev=1; int curr=1;原创 2021-04-08 16:34:50 · 62 阅读 · 0 评论 -
leetcode-二叉树
二叉树 104.最大深度 后序遍历,先获得左右子树深度再计算根节点深度 class Solution { public int maxDepth(TreeNode root) { if(root==null) { return 0; } else { int left=maxDepth(root.left); int right=maxDepth原创 2021-04-08 16:30:42 · 154 阅读 · 0 评论