薄荷丶微微凉

人生若只如初见,何事秋风悲画扇。

摘要: import java.util.Iterator; import java.util.NoSuchElementException; /** * @Auther: FAN * @Date: 2018/9/1 21:41 * @Description: 自定义ArrayList **/ public class MyArrayList{ //默认数组大小 priva... 阅读全文
posted @ 2018-09-02 09:12 淡淡薄荷丶微微凉 阅读(269) 评论(0) 推荐(0) 编辑
摘要: /** * @Auther: FAN * @Date: 2018/8/27 22:42 * @Description: **/ public class MaxHeap { protected Item[] data; // 堆中存储的数量 protected int count; // 堆中可存放的数据个数 protected int cap... 阅读全文
posted @ 2018-09-02 09:11 淡淡薄荷丶微微凉 阅读(125) 评论(0) 推荐(0) 编辑
摘要: import cn.idestiny.util.GeneratedArray; import java.util.Arrays; /** * @Auther: FAN * @Date: 2018/8/30 21:15 * @Description:二分查找法 **/ public class BinarySerach { public static int binarySe... 阅读全文
posted @ 2018-09-02 09:10 淡淡薄荷丶微微凉 阅读(129) 评论(0) 推荐(0) 编辑
摘要: import java.util.LinkedList; import java.util.Queue; import java.util.Stack; /** * @Auther: Administrator * @Date: 2018/8/31 08:55 * @Description: BinarySearchTree */ public class BinarySearchTr... 阅读全文
posted @ 2018-09-02 09:09 淡淡薄荷丶微微凉 阅读(147) 评论(0) 推荐(0) 编辑