陈耿聪是个狠人
陈耿聪是个狠人
全部文章
分类
《机器学习》(3)
《计算机网络》(1)
归档
标签
去牛客网
登录
/
注册
cznzai
踏踏实实学习,编写高质量博客。科学知识是伟人呕心沥血的成就,须保持敬畏之心
TA的专栏
27篇文章
1人订阅
计算机学习之路资料共享---CSGO
0篇文章
0人学习
Java高并发、多线程
0篇文章
0人学习
数据结构与算法学习之路
0篇文章
0人学习
Netty学习之路
0篇文章
0人学习
大数据学习之路
1篇文章
1475人学习
Spring全家桶学习之路
2篇文章
79人学习
行政职业能力测验
0篇文章
0人学习
C/C++语言
14篇文章
2659人学习
微信支付学习之路
0篇文章
0人学习
Redis学习之路
0篇文章
0人学习
Docker学习之路
0篇文章
0人学习
数据库、中间件学习之路
1篇文章
571人学习
编程工具学习之路
0篇文章
0人学习
Python与机器学习之路
5篇文章
1557人学习
设计模式学习之路
0篇文章
0人学习
搜索引擎ES学习之路
0篇文章
0人学习
Java/JVM底层
0篇文章
0人学习
面试题
3篇文章
1242人学习
计算机网络
1篇文章
1050人学习
安全与加密学习之路
0篇文章
0人学习
操作系统
0篇文章
0人学习
软件工程与项目设计
0篇文章
0人学习
Angular初入社会的坑
0篇文章
0人学习
全部文章
(共260篇)
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
208. Implement Trie
class Node { final static int the_maxsize = 26; Node[] list = new Node[the_maxsize]; char data; boolean isEnd = false; ...
2019-08-10
0
423
3. lengthOfLongestSubstring
暴力 class Solution { public int lengthOfLongestSubstring(String s) { int the_max = 0; HashSet hs = new HashSet(); for (int i =...
2019-08-10
0
547
5. Longest
遍历中心点 然后像两边扩出去 class Solution { public String longestPalindrome(String s) { String ans =""; for(int i = 0 ; i < s.le...
2019-08-08
0
422
929. 独特的电子邮件地址
class Solution { public int numUniqueEmails(String[] emails) { HashSet hs = new HashSet(); for (int i = 0; i < emails.length; i++) ...
2019-08-08
0
593
首页
上一页
7
8
9
10
11
12
13
14
15
16
下一页
末页