Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
danielathome19 authored Jan 2, 2024
1 parent 7c465e6 commit cfe3198
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,24 @@ A Chunk List is a new, concurrent, chunk-based data structure that is easily mod
To find out more, check out the provided research paper:
* /Chunk List/Presentation/"Chunk List.pdf" (DOI: [10.48550/arxiv.2101.00172](https://doi.org/10.48550/arxiv.2101.00172))

## Installation

Install the [ChunkList NuGet package](https://www.nuget.org/packages/ChunkList/):

```bash
dotnet add package ChunkList
```

# Usage
```csharp
using ChunkList;

ChunkList<int> list = new ChunkList<int>();
for (int i = 1; i <= 100; i++)
list.add(i);
list.print();
```

The __Presentation__ folder (i.e., the research paper) 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?
Expand Down

0 comments on commit cfe3198

Please sign in to comment.