摘要:
先说 windows 一、找到idea安装目录 在安装的idea下面的bin目录下面有两个文件:一个是idea64.exe.vmoptions,还有一个是idea.exe.vmoptions idea15-2018.1.5激活补丁:http://idea.lanyus.com/jar/Jetbrai 阅读全文
摘要:
原文链接:https://blog.csdn.net/catoop/article/details/100679497 阅读全文
摘要:
原文链接:https://blog.csdn.net/mysqldba23/article/details/67640478/ 阅读全文
摘要:
错误描述: [ERR] Node 10.211.55.8:7001 is not empty. Either the node already knows other nodes (check with CLUSTER NODES) or contains some key in database 阅读全文
摘要:
前言 HashMap 在 Java 和 Android 开发中非常常见 而HashMap 1.8 相对于 HashMap 1.7 更新多 今天,我将通过源码分析HashMap 1.8 ,从而讲解HashMap 1.8 相对于 HashMap 1.7 的更新内容,希望你们会喜欢。 本文基于版本 JDK 阅读全文
摘要:
/** * @Description:ლ【】ლ->快速排序 * @Param: * @Return: * @Author: Mr.li * @Date: 2019/12/23 */ public class QuickSort { public static int[] qsort(int arr[ 阅读全文
摘要:
/** * @Description:ლ【】ლ->二分查找 * @Author: Mr.li * @Date: 2019/11/29 */ public class BinarySearch { /** * @Description:ლ【】ლ->二分查找递归查询 * @Param: arrays 要 阅读全文
摘要:
/** * @Description:ლ【】ლ->冒泡排序 * @Param: * @Return: * @Author: Mr.li * @Date: 2019/12/23 */ public class DubbleSort { public static void main(String[] 阅读全文
摘要:
/** * 选择排序 * @Author: Mr.li * @Date: 2019/11/29 */ public class SelectSort { public static void main(String[] args) { int[] arr = {49, 38, 65, 97, 76, 阅读全文
摘要:
import java.util.Arrays; public class HeapSort { public static void main(String[] args){ int[] arr = {6, 5, 4, 3, 9, 8, 7, 2, 1}; sort(arr); System.ou 阅读全文