摘要:
/** * @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 阅读全文
摘要:
本图片来源于网络,如有侵权,联系本人删除。 阅读全文
摘要:
原文链接:https://blog.csdn.net/wulove52/article/details/84953998 在javascript 我经常用到,parseInt、parseFloat、Number、isNaN,但是转规则不一,常常搞不清楚区别。记忆起来非常吃力。 今天我们来扯一扯他们的 阅读全文
摘要:
错误信息: [root@centos-linux redis-cluster]# ./redis-trib.rb create --replicas 1 10.211.55.8:7001 10.211.55.8:7002 10.211.55.8:7003 10.211.55.8:7004 10.21 阅读全文
摘要:
一、Linux历史知识: 应用:安装在各种服务器之上,用于嵌入式 版本:内核版本,发行版本(各个公司对其优化) 二、目录介绍 root:系统管理员登录的默认目录 home:其他用户进来的默认目录 usr:目录存放了系统中重要的二进制文件,文档,库文件,头文件等等。 etc:配置文件 三、核心命令 命 阅读全文