https://github.com/claudemuller/data-structures
A repo containing various data structures expressed in various languages
https://github.com/claudemuller/data-structures
c data-structures go javascript python typescript
Last synced: 3 months ago
JSON representation
A repo containing various data structures expressed in various languages
- Host: GitHub
- URL: https://github.com/claudemuller/data-structures
- Owner: claudemuller
- Created: 2024-03-15T03:40:59.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-13T15:26:17.000Z (over 1 year ago)
- Last Synced: 2024-11-13T16:31:49.840Z (over 1 year ago)
- Topics: c, data-structures, go, javascript, python, typescript
- Language: JavaScript
- Homepage:
- Size: 175 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures 📦
A repo containing various [data structures](https://dxt.rs/category/programming/general/data-structures/) expressed in various languages.
## [Arrays](https://github.com/claudemuller/data-structures/tree/master/arrays)
The [companion article](https://dxt.rs/category/programming/general/arrays/) discussing arrays can be found here.
- [in Go](https://github.com/claudemuller/data-structures/tree/master/arrays/go) [](https://github.com/claudemuller/data-structures/actions/workflows/arrays.go.yml)
- [in C](https://github.com/claudemuller/data-structures/tree/master/arrays/c) [](https://github.com/claudemuller/data-structures/actions/workflows/arrays.c.yml)
- [in TypeScript](https://github.com/claudemuller/data-structures/tree/master/arrays/ts) [](https://github.com/claudemuller/data-structures/actions/workflows/arrays.ts.yml)
- [in JavaScript](https://github.com/claudemuller/data-structures/tree/master/arrays/js) [](https://github.com/claudemuller/data-structures/actions/workflows/arrays.js.yml)
## [Linked Lists](https://github.com/claudemuller/data-structures/tree/master/linked-lists)
The [companion article](https://dxt.rs/category/programming/general/linked-lists/) discussing linked lists can be found here.
- [in Go](https://github.com/claudemuller/data-structures/tree/master/linked-lists/go) [](https://github.com/claudemuller/data-structures/actions/workflows/linked-lists.go.yml)
- [in C](https://github.com/claudemuller/data-structures/tree/master/linked-lists/c) [](https://github.com/claudemuller/data-structures/actions/workflows/linked-lists.c.yml)
- [in JavaScript](https://github.com/claudemuller/data-structures/tree/master/linked-lists/js) [](https://github.com/claudemuller/data-structures/actions/workflows/linked-lists.js.yml)
## [Stacks](https://github.com/claudemuller/data-structures/tree/master/stacks)
The [companion article](https://dxt.rs/category/programming/general/stacks/) discussing stacks can be found here.
- [in Go](https://github.com/claudemuller/data-structures/tree/master/stacks/go) [](https://github.com/claudemuller/data-structures/actions/workflows/stacks.go.yml)
- [in JavaScript](https://github.com/claudemuller/data-structures/tree/master/stacks/js) [](https://github.com/claudemuller/data-structures/actions/workflows/stacks.js.yml)