jar

com.google.code.externalsortinginjava : externalsortinginjava

Maven & Gradle

Apr 04, 2023
5 usages
247 stars

externalsortinginjava · Sometimes, you want to sort large file without first loading them into memory. The solution is to use External Sorting. You divide the files into small blocks, sort each block in RAM, and then merge the result. Many database engines and the Unix sort command support external sorting. But what if you want to avoid a database? Or what if you want to sort in a non-lexicographic order? Or maybe you just want a simple external sorting example? When we could not find such a simple program, we wrote one.

Table Of Contents

Latest Version

Download com.google.code.externalsortinginjava : externalsortinginjava JAR file - Latest Versions:

All Versions

Download com.google.code.externalsortinginjava : externalsortinginjava JAR file - All Versions:

Version Vulnerabilities Size Updated
0.6.x
0.5.x
0.4.x
0.3.x
0.2.x
0.1.x

View Java Class Source Code in JAR file

  1. Download JD-GUI to open JAR file and explore Java source code file (.class .java)
  2. Click menu "File → Open File..." or just drag-and-drop the JAR file in the JD-GUI window externalsortinginjava-0.6.2.jar file.
    Once you open a JAR file, all the java classes in the JAR file will be displayed.

com.google.code.externalsorting.csv

├─ com.google.code.externalsorting.csv.CSVRecordBuffer.class - [JAR]

├─ com.google.code.externalsorting.csv.CsvExternalSort.class - [JAR]

├─ com.google.code.externalsorting.csv.CsvSortOptions.class - [JAR]

├─ com.google.code.externalsorting.csv.SizeEstimator.class - [JAR]

com.google.code.externalsorting

├─ com.google.code.externalsorting.BinaryFileBuffer.class - [JAR]

├─ com.google.code.externalsorting.ExternalSort.class - [JAR]

├─ com.google.code.externalsorting.IOStringStack.class - [JAR]

├─ com.google.code.externalsorting.StringSizeEstimator.class - [JAR]

Advertisement