自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 收藏
  • 关注

原创 你不懂JS:作用域与闭包===》第一章:什么是作用域?(笔记)

程序的状态事实上是由程序里的值决定的

2020-05-02 17:33:12 145

转载 Node Sass does not yet support your current environment解决办法

先卸载:(如果卸载不成功,直接找到node-sass文件夹,删除)1. npm uninstall --save node-sass  再安装2. npm install --save node-sass    (cnpm install --save node-sas...

2019-07-26 16:46:48 695

转载 Centos国内镜像文件下载地址

Centos国内镜像文件下载地址:http://centos.ustc.edu.cn/centos/

2019-07-16 17:29:35 699

原创 希尔排序实现

//希尔排序public class ShellSort { public static void main(String[] args) { ShellSort shellSort = new ShellSort(); int[] arr = shellSort .shellSort(new int[] { 1, 4, 7, 8, 5, 2, 3, 6, 9, 0, 11, ...

2019-03-09 00:53:40 213

原创 快速排序实现

//快速排序public class Quicksort { public static void main(String[] args) { Quicksort qs = new Quicksort(); int[] quicksort = qs.quicksort(new int[] { 11, 8, 13, 9, 7, 1, 2, 5 }); for (int i : qui...

2019-03-06 17:04:18 182

原创 选择排序实现

//选择排序public class SelectionSort { public static void main(String[] args) { SelectionSort selectionSort = new SelectionSort(); int[] arr = selectionSort.selectionSort(new int[] { 1, 4, 7, 8, 5, ...

2019-03-06 10:14:56 237

原创 冒泡排序实现

//冒泡排序public class BubbleSort { public static void main(String[] args) { BubbleSort bubbleSort = new BubbleSort(); int[] arr = bubbleSort.bubbleSort(new int[] { 1, 4, 7, 8, 5, 2, 3, 6, 9 }); f...

2019-03-06 10:14:07 223

原创 插入排序实现

//插入排序public class InsertionSort { public static void main(String[] args) { InsertionSort insertionSort = new InsertionSort(); int[] arr = insertionSort.insertionSort(new int[] { 1, 4, 7, 8, 5, ...

2019-03-06 10:12:16 191

原创 归并排序实现

package sort;//归并排序public class MergeSort { public static void main(String[] args) { MergeSort ms = new MergeSort(); int[] ok = ms.mergesort(new int[] { 11, 8, 3, 9, 7, 1, 2, 5 ,4}); for (in...

2019-03-04 17:22:59 180

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除