Sux4J.
Sux4j is an implementation of succinct data structure in Java. It provides a number of related implementations covering ranking/selection over bit arrays, compressed lists and minimal perfect hashing..
Here is the list of declaration for sux4j. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>it.unimi.dsi</groupId> <artifactId>sux4j</artifactId> <version>3.0.7</version> </dependency>
If you think this Maven repository POM file listing for sux4j is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU Lesser General Public License Version 3+
URL: http://www.gnu.org/licenses/lgpl.html.
The sux4j-3.0.7 has 11 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Collections | fastutil 6.5.2 fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists and priority queues with a small memory footprint and fast access and insertion; provides also big (64-bit) arrays, sets and lists, and fast, practical I/O classes for binary and text files. | 5 |
Development | jsap 2.1 the Java-based Simple Argument Parser | 37 |
JUnit | junit 4.11 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 2031 |
Byte Code | emma 2.1.5320 EMMA is a fast Java code coverage tool based on bytecode instrumentation. It differs from the existing tools by enabling coverage profiling on large scale enterprise software projects with simultaneous emphasis on fast individual development. | 33 |
Build | emma_ant 2.1.5320 EMMA is a fast Java code coverage tool based on bytecode instrumentation. It differs from the existing tools by enabling coverage profiling on large scale enterprise software projects with simultaneous emphasis on fast individual development. | 32 |
Log | logback-classic 1.0.9 logback-classic module | 107 |
Data Structure | commons-configuration 1.8 Tools to assist in the reading of configuration/preferences files in various formats | 72 |
File | commons-io 2.4 The Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more. | 852 |
Data Structure | commons-lang 2.6 Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 407 |
Data Structure | commons-collections 3.2.1 Types that extend and augment the Java Collections Framework. | 419 |
The following packages are defined in the sux4j-3.0.7.jar
it.unimi.dsi.sux4j.bits it.unimi.dsi.sux4j.io it.unimi.dsi.sux4j.mph it.unimi.dsi.sux4j.util
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>it.unimi.dsi</groupId> <artifactId>sux4j</artifactId> <packaging>jar</packaging> <name>Sux4J</name> <version>3.0.7</version> <description>Sux4j is an implementation of succinct data structure in Java. It provides a number of related implementations covering ranking/selection over bit arrays, compressed lists and minimal perfect hashing.</description> <url>http://sux4j.dsi.unimi.it/</url> <licenses> <license> <name>GNU Lesser General Public License Version 3+</name> <url>http://www.gnu.org/licenses/lgpl.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git://github.com/vigna/Sux4J.git</connection> <url>https://github.com/vigna/Su4xJ</url> </scm> <dependencies> <dependency> <groupId>it.unimi.dsi</groupId> <artifactId>fastutil</artifactId> <version>6.5.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>it.unimi.dsi</groupId> <artifactId>dsiutils</artifactId> <version>2.0.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.martiansoftware</groupId> <artifactId>jsap</artifactId> <version>2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>emma</groupId> <artifactId>emma</artifactId> <version>2.1.5320</version> <scope>test</scope> </dependency> <dependency> <groupId>emma</groupId> <artifactId>emma_ant</artifactId> <version>2.1.5320</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.0.9</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> <version>1.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> <scope>compile</scope> </dependency> </dependencies> </project>