View on GitHub

Sort-tool

排序算法工具,包括:冒泡排序、选择排序、归并排序、快速排序、插入排序、希尔排序、堆排序等排序算法

download .ZIPdownload .TGZ

SortTool(Java)

Overview

This is Sort Algorithm tool,you can easy to use many sort algorithm.

About Sort Algorithm introduction see the ALGORITHM_WIKI.

Support
Bubble Sort
Selection Sort
Merge Sort
Quick Sort
Shell Sort
Heap Sort
Cocktail Sort
Gnome Sort
Comb Sort

Quick Start

Add maven dependency

<dependency>
  <groupId>com.tifosi-m</groupId>
  <artifactId>sort-tool</artifactId>
  <version>1.0</version>
</dependency>

Or Download sort-algorithm.jar

import com.tifosi.tool.sort.*;


Sort<Integer> quickSort = new QuickSort<Integer>(array);
quick.sort();

Enjoy It!