Datastructures

Interesting and useful Data structure implementations

License

License

MIT
Categories

Categories

Data
GroupId

GroupId

io.github.boredmathematician
ArtifactId

ArtifactId

datastructures
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

Datastructures
Interesting and useful Data structure implementations
Project URL

Project URL

https://github.com/boredmathematician/datastructures
Source Code Management

Source Code Management

http://github.com/boredmathematician/datastructures/tree/main

Download datastructures

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.boredmathematician/datastructures/ -->
<dependency>
    <groupId>io.github.boredmathematician</groupId>
    <artifactId>datastructures</artifactId>
    <version>1.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.boredmathematician/datastructures/
implementation 'io.github.boredmathematician:datastructures:1.1.0'
// https://jarcasting.com/artifacts/io.github.boredmathematician/datastructures/
implementation ("io.github.boredmathematician:datastructures:1.1.0")
'io.github.boredmathematician:datastructures:jar:1.1.0'
<dependency org="io.github.boredmathematician" name="datastructures" rev="1.1.0">
  <artifact name="datastructures" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.boredmathematician', module='datastructures', version='1.1.0')
)
libraryDependencies += "io.github.boredmathematician" % "datastructures" % "1.1.0"
[io.github.boredmathematician/datastructures "1.1.0"]

Dependencies

test (1)

Group / Artifact Type Version
org.junit.jupiter : junit-jupiter-engine jar 5.5.2

Project Modules

There are no modules declared in this project.

Datastructures

This repository provides an implementation to the Following Data Structures:

  • Table
    • A data structure which stores values in a tabular format.
    • Each value is associated with a Column and a Row.
    • This data structure provides methods to
      • Create a Table
      • Add, Update and Remove Rows/Columns
      • Set, Clear and Get values by Column and Row
      • Get all values in a Row/Column

Versions

Version
1.1.0
1.0.0