陈耿聪是个狠人
陈耿聪是个狠人
全部文章
未归档
《机器学习》(3)
《计算机网络》(1)
归档
标签
去牛客网
登录
/
注册
cznzai
踏踏实实学习,编写高质量博客。科学知识是伟人呕心沥血的成就,须保持敬畏之心
全部文章
/ 未归档
(共254篇)
101. 对称二叉树
递归解法 class Solution { public boolean isSymmetric(TreeNode root) { if(root==null)return true; return dfs(root.left,root.right); ...
2020-03-21
0
526
10、正则表达式
class Solution{ public boolean isMatch(String s,String p){ char[] sCharArray = s.toCharArray(); char[] pCharArray = p....
2020-03-18
0
531
5. 最长回文子串
class Solution { public String longestPalindrome(String s) { String ans =""; for(int i = 0 ; i < s.length() ; i++) { ...
2020-03-17
0
542
23. 合并K个排序链表
class Solution { public ListNode mergeKLists(ListNode[] lists) { int len = lists.length;//每次待处理的链表个数 if(len==0)return null;//处理nul...
2020-03-12
0
565
2. 两数相加
class Solution { public ListNode addTwoNumbers(ListNode l1, ListNode l2) { ListNode head = new ListNode(0); ListNode ln = head; ...
2020-03-11
0
547
141环形链表
利用hash表来存放地址 得到是否重复 public class Solution { public boolean hasCycle(ListNode head) { if(head==null)return false; HashSet hs = new ...
2020-03-08
0
558
83删除排序链表中的重复元素
class Solution { public ListNode deleteDuplicates(ListNode head) { if(head==null)return head; ListNode temp = head; while(...
2020-03-07
0
525
21. 合并两个有序链表
合并排序的思路 class Solution { public ListNode mergeTwoLists(ListNode l1, ListNode l2) { ListNode tem = new ListNode(0); ListNode ans =...
2020-03-07
0
505
123. 买卖股票的最佳时机 III
class Solution { public int maxProfit(int[] prices) { int n = prices.length; int[] p1 = new int[n]; //p[0][i] int[] p2 = ...
2020-03-06
0
2740
16. 最接近的三数之和
前期算错了一个 if (Math.abs(temp-target) > Math.abs(target - num)) {//接近程度 temp = Math.abs(target - num));//值越小 越接近 应...
2020-03-05
0
625
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页