陈耿聪是个狠人
陈耿聪是个狠人
全部文章
未归档
《机器学习》(3)
《计算机网络》(1)
归档
标签
去牛客网
登录
/
注册
cznzai
踏踏实实学习,编写高质量博客。科学知识是伟人呕心沥血的成就,须保持敬畏之心
全部文章
/ 未归档
(共254篇)
SpringBoot 第四章WEB(2)
资料 server.error.include-exception=truethymeleaf公共页面元素抽取 代码 1、抽取公共片段 《div th:fragment="copy"> © 2011 The Good Thymes Virtu...
2020-04-02
0
652
110. 平衡二叉树
顶到底 效率太低了 class Solution { public boolean isBalanced(TreeNode root) { if(root == null)return true; if(Math.abs(func(root.left)-func(root...
2020-03-31
0
518
44. 通配符匹配
public boolean isMatch(String s, String p) { if (p==null||p.isEmpty())return s==null||s.isEmpty(); int i=0,j=0,istart=-1,jstart=-1,slen=s.leng...
2020-03-30
0
519
134. 加油站
第一种想法就是每个位置都遍历一遍 O(n*n) class Solution { public int canCompleteCircuit(int[] gas, int[] cost) { int ans[] = new int[gas.length]; ...
2020-03-29
0
502
455. 分发饼干
class Solution { public int findContentChildren(int[] g, int[] s) { if(g == null || s == null) return 0; Arrays.sort(g); A...
2020-03-27
0
492
392. 判断子序列
class Solution { public boolean isSubsequence(String s, String t) { if(s==null||s.length()==0)return true; if(t==null||t.length()=...
2020-03-26
0
461
96. 不同的二叉搜索树
结题思路:假设n个节点存在二叉排序树的个数是G(n),1为根节点,2为根节点,...,n为根节点,当1为根节点时,其左子树节点个数为0,右子树节点个数为n-1,同理当2为根节点时,其左子树节点个数为1,右子树节点为n-2,所以可得G(n) = G(0) * G(n-1)+G(1)* G(n-2)+....
2020-03-23
0
519
226. 翻转二叉树
class Solution { public TreeNode invertTree(TreeNode node) { if(node==null)return node; TreeNode temp = node.left; node.l...
2020-03-22
0
611
365. 水壶问题
装满y ---- y还有5y向x装3-----y还有2,x有3倒掉x,把y里面的2装到x-------y还有0,x有2装满y ----- y有5,x有2y向x装1(用y装满x) ----- y有4,x有3倒掉x ------ y有4,x有 0 没有z的容器 数学上可以证明只要x,y的最大公约数能整...
2020-03-21
0
558
剑指offer22. 链表中倒数第k个节点
用双指针可以解决 public class Solution { public ListNode getKthFromEnd(ListNode head, int k) { ListNode temp = head; while(temp!=null){ ...
2020-03-21
0
511
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页