摘要: 今天算是正式开始读源码了。看了许多面经,发现不读源码还是不行。今天稍微看了看一些接口和抽象类等,大致有了点理解。总结点它们之间的区别吧 Collection和Collections Collection是个接口,规范了一些相关的类必备的方法。其中,List、Set、Queue、Deque都继承自Co 阅读全文
posted @ 2020-10-02 19:36 dlooooo 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 接口 定义了一组对类的需求。实现接口的类,必须要实现接口内定义的方法。书中举例为,需要调用Arrays.sort()方法的类必须实现Comparable接口,而实现Comparable接口的类必须要实现Comparable接口中包含的compareTo方法。当然通常接口都定义了不止一个方法,也就是说 阅读全文
posted @ 2020-10-02 16:16 dlooooo 阅读(129) 评论(0) 推荐(0) 编辑
摘要: /** * Definition for singly-linked list. * class ListNode { * int val; * ListNode next; * ListNode(int x) { * val = x; * next = null; * } * } */ publi 阅读全文
posted @ 2020-10-02 09:03 dlooooo 阅读(150) 评论(0) 推荐(0) 编辑
摘要: class Solution { public int binary_search(int[]nums,int left,int right,int target){ int mid=0; while(left<=right){ mid = (left+right)/2; if(nums[mid]> 阅读全文
posted @ 2020-10-02 08:53 dlooooo 阅读(158) 评论(0) 推荐(0) 编辑
摘要: class Solution { public int maxProfit(int[] prices) { int res=0; int MinPrice = Integer.MAX_VALUE; int len = prices.length-1; for(int i=0;i<=len;i++){ 阅读全文
posted @ 2020-10-02 08:22 dlooooo 阅读(112) 评论(0) 推荐(0) 编辑