上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页
摘要: 感觉这个题不难。。。做出来了 class Solution { public int search(int[] nums, int target) { if (nums == null || nums.length == 0) { return -1; } int start = 0; int en 阅读全文
posted @ 2020-04-27 23:19 doyi 阅读(119) 评论(0) 推荐(0) 编辑
摘要: class Solution { public int reversePairs(int[] nums) { int len = nums.length; if(len<2){ return 0; } int[] copy = new int[len]; for(int i=0;i<len;i++) 阅读全文
posted @ 2020-04-25 00:01 doyi 阅读(179) 评论(0) 推荐(0) 编辑
摘要: class Solution { public int waysToChange(int n) { int[] dp = new int[n + 1]; int[] coins = new int[]{1,5,10,25}; //刚好可以用一个硬币凑成的情况,是一种情况 // while i == 阅读全文
posted @ 2020-04-23 23:21 doyi 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 牛就一个字,我能说啥,一开始想到每次遍历最右边的节点,但又想到万一出现有一层只有左半部分的节点没有右半部分的节点就不好弄了,没想到可以用BFS遍历,每次取到最后一个数,腻害。 /** * Definition for a binary tree node. * public class TreeNo 阅读全文
posted @ 2020-04-22 23:51 doyi 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 滑动窗口的方法太牛了,学习学习到了 https://leetcode-cn.com/problems/count-number-of-nice-subarrays/solution/hua-dong-chuang-kou-qian-zhui-he-bi-xu-miao-dong-b/ package 阅读全文
posted @ 2020-04-22 00:00 doyi 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 性能测试基础 TCP通信过程的状态码与过程,以及出现错误码的分析(TIME_WAIT,CLOSE_WAIT) ***** 一次完整的HTTP事务是怎样一个过程?**** HTTP请求响应的过程**** TCP 协议面试 10 连问 Java建设者 **** 面试 HTTP ,99% 的面试官都爱问这 阅读全文
posted @ 2020-04-21 16:53 doyi 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 自己想的版本 package leetcode; /** * @author doyinana * @create 2020-04-20 23:20 */ public class L200 { char[][] grid; public int numIslands(char[][] grid) 阅读全文
posted @ 2020-04-20 23:56 doyi 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 之前做过的想不起来了,只想到用两个指针,具体怎么走忘记。 https://leetcode-cn.com/problems/container-with-most-water/solution/container-with-most-water-shuang-zhi-zhen-fa-yi-do/ 每 阅读全文
posted @ 2020-04-19 23:23 doyi 阅读(116) 评论(0) 推荐(0) 编辑
摘要: Java容器常见面试题/知识点总结 《LinkedHashMap 源码详细分析(JDK1.8)》 演示 JDK8 中的数据结构 阿里巴巴Java开发手册建议创建HashMap时设置初始化容量 再被问到 ConcurrentHashMap,把这篇文章甩给他 阅读全文
posted @ 2020-04-18 14:14 doyi 阅读(103) 评论(0) 推荐(0) 编辑
摘要: m欸有思路。。。。。 https://leetcode-cn.com/problems/jump-game-ii/solution/xiang-xi-tong-su-de-si-lu-fen-xi-duo-jie-fa-by-10/ 方法一: 贪婪算法,我们每次在可跳范围内选择可以使得跳的更远的位置 阅读全文
posted @ 2020-04-17 23:55 doyi 阅读(82) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页