陈耿聪是个狠人
陈耿聪是个狠人
全部文章
未归档
《机器学习》(3)
《计算机网络》(1)
归档
标签
去牛客网
登录
/
注册
cznzai
踏踏实实学习,编写高质量博客。科学知识是伟人呕心沥血的成就,须保持敬畏之心
全部文章
/ 未归档
(共254篇)
79. 单词搜索
class Solution { int n; int m; int dx[] = new int[] { -1, 0, 1, 0 }; int dy[] = new int[] { 0, -1, 0, 1 }; public boolean exist(ch...
2019-08-18
0
427
17. 电话号码的字母组合
递归 class Solution { List ls; String[] arr = { "", "", "abc", "def", "ghi", "jkl", ...
2019-08-17
0
436
297. 二叉树的序列化与反序列化
public class Codec { // 这个数不只是个位数 还可能是负数等等 不单纯把他看作个位数 或者整数 // Encodes a tree to a single string. public String serialize(TreeNode root) { ...
2019-08-16
0
420
173. 二叉搜索树迭代器
通过一个优先队列进行存储数据 然后每一次读数据都是输出第一个结点 class BSTIterator { Queuels = new PriorityQueue(); public BSTIterator(TreeNode root) { dfs(root); ...
2019-08-16
0
0
543. 二叉树的直径
class Solution { int ans = 0; public int diameterOfBinaryTree(TreeNode root) { dfs(root); return ans; } public in...
2019-08-14
0
450
236. 二叉树的最近公共祖先
class Solution { public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) { if(root==null||root==p||root==q)return ...
2019-08-14
0
509
235. 二叉搜索树的最近公共祖先
因为是二叉搜索树 所以左边小 右边大递归 class Solution { public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) { int pval = p.val; ...
2019-08-14
0
402
105. 从前序与中序遍历序列构造二叉树
class Solution { HashMap inhm = new HashMap(); public TreeNode buildTree(int[] preorder, int[] inorder) { inhm.clear(); for(i...
2019-08-14
0
454
98. 验证二叉搜索树
long l = 9223372036854775808; 后面是一个int 类型 的数long l = 9223372036854775808L; 才是一个long类型的数 class Solution { public boolean isValidBST(TreeNode root) ...
2019-08-13
0
441
1144. 递减元素使数组呈锯齿状
class Solution { public int movesToMakeZigzag(int[] nums) { int temp1[] = new int[nums.length]; int temp2[] = new int[nums.length]...
2019-08-10
0
473
首页
上一页
6
7
8
9
10
11
12
13
14
15
下一页
末页