https://github.com/danielathome19/chunk-list-rs
A Chunk List is a new, concurrent, chunk-based data structure that is easily modifiable and allows for fast run-time operations.
Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 7 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (16.3%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
A Chunk List is a new, concurrent, chunk-based data structure that is easily modifiable and allows for fast run-time operations.
Basic Info
- Host: GitHub
- Owner: danielathome19
- License: apache-2.0
- Language: Rust
- Default Branch: main
- Size: 16.6 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created over 1 year ago
· Last pushed over 1 year ago
https://github.com/danielathome19/Chunk-List-rs/blob/main/
[](https://crates.io/crates/chunklist)
[](https://github.com/danielathome19/Chunk-List-rs/actions/workflows/cargo_push.yml)
[](https://github.com/danielathome19/Chunk-List-rs/blob/main/LICENSE.md)
[](https://doi.org/10.48550/arxiv.2101.00172)
# About
A Chunk List is a new, concurrent, chunk-based data structure that is easily modifiable and allows for fast runtime operations.
To find out more, check out the provided research paper in the [original C# implementation repo](https://github.com/danielathome19/Chunk-List):
* /Chunk List/Presentation/"Chunk List.pdf" (DOI: [10.48550/arxiv.2101.00172](https://doi.org/10.48550/arxiv.2101.00172))
## Installation
Install the [`chunklist` Cargo crate](https://crates.io/crates/chunklist):
```bash
cargo add chunklist
```
Or, in Cargo.toml:
```yml
[dependencies]
chunklist = "0.1.0"
```
# Usage
```rs
use chunklist::ChunkList;
fn main() {
println!("Hello, world!");
let mut chunklist = ChunkList::new(25);
let mut rng = rand::thread_rng();
for _ in 0..250 {
let value = rng.gen_range(0..1000);
chunklist.add(value);
}
chunklist.sort();
chunklist.print();
println!("Length: {}", chunklist.len());
println!("List contains 500: {}\n", chunklist.contains(&500));
}
```
The __Presentation__ folder (i.e., the research paper) in the [original C# implementation repo](https://github.com/danielathome19/Chunk-List) contains a full presentation and research paper in PDF format, containing the following information:
* What is a chunk list?
* Where is a chunk list used?
* Implementation details (construction, basic methods)
* Complexity Analysis (Big-O)
* Unit Testing
* Integration
Program files are kept within the _main_ branch.
A full implementation of the class is kept within the __chunklist.rs__ file in the module __chunklist__, to be included within the program.
The __tests/chunklist_tests.rs__ file contains a benchmark test for comparison between a Vector and Chunk List.
# Bugs/Features
Bugs are tracked using the GitHub Issue Tracker.
Please use the issue tracker for the following purpose:
* To raise a bug request; do include specific details and label it appropriately.
* To suggest any improvements in existing features.
* To suggest new features or structures or applications.
# License
The code is licensed under Apache License 2.0.
# Citation
If you use this code for your research, please cite this project:
```bibtex
@software{Szelogowski_Chunk-List_2017,
author = {Szelogowski, Daniel},
doi = {10.48550/arxiv.2101.00172},
month = {May},
title = {{Chunk-List}},
license = {Apache-2.0},
url = {https://github.com/danielathome19/Chunk-List-rs},
version = {1.0.0},
year = {2017}
}
```
Owner
- Name: Daniel J. Szelogowski
- Login: danielathome19
- Kind: user
- Location: Wisconsin
- Company: @MECS-Research-Lab
- Website: https://danielszelogowski.com/
- Twitter: DanielAtHome19
- Repositories: 50
- Profile: https://github.com/danielathome19
Standing on the shoulders of giants.
GitHub Events
Total
- Push event: 2
- Create event: 2
Last Year
- Push event: 2
- Create event: 2
Packages
- Total packages: 1
-
Total downloads:
- cargo 691 total
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 1
- Total maintainers: 1
crates.io: chunklist
A Chunk List is a new, concurrent, chunk-based data structure that is easily modifiable and allows for fast runtime operations.
- Documentation: https://docs.rs/chunklist/
- License: Apache-2.0
-
Latest release: 0.1.0
published over 1 year ago
Rankings
Dependent repos count: 23.6%
Dependent packages count: 31.3%
Average: 50.1%
Downloads: 95.4%
Maintainers (1)
Last synced:
11 months ago