parts of merge sort

This commit is contained in:
2020-12-24 01:14:23 +01:00
parent aabc384544
commit aa9b609b68
10 changed files with 359 additions and 0 deletions

28
build.gradle Normal file
View File

@ -0,0 +1,28 @@
apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'de.redstoneunion.git.MrGeorgen.timsort.test'
// tag::repositories[]
repositories {
mavenCentral()
}
// end::repositories[]
// tag::jar[]
jar {
archiveBaseName = 'timsort'
archiveVersion = '0.1.0'
}
// end::jar[]
// tag::dependencies[]
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
}
// end::dependencies[]
// tag::wrapper[]
// end::wrapper[]