Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielrufino/cube
🧱 Data Structures and Algorithms made in Typescript
https://github.com/gabrielrufino/cube
algorithms datastructures typescript
Last synced: 7 days ago
JSON representation
🧱 Data Structures and Algorithms made in Typescript
- Host: GitHub
- URL: https://github.com/gabrielrufino/cube
- Owner: gabrielrufino
- License: unlicense
- Created: 2021-11-01T14:16:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T22:01:41.000Z (6 months ago)
- Last Synced: 2024-05-29T12:58:53.371Z (6 months ago)
- Topics: algorithms, datastructures, typescript
- Language: TypeScript
- Homepage: https://cube.gabrielrufino.com/
- Size: 1.63 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cube
Data structures made in Typescript
Black Tech By [Gabriel Rufino](https://github.com/gabrielrufino) 🖤
## Getting started
#### Installing package
```bash
npm install @gabrielrufino/cube
```#### Importing package
ESModules:
```js
import cube from '@gabrielrufino/cube'
```CommonJS:
```js
const cube = require('@gabrielrufino/cube')
```## Data Structures
* [Array/List](./docs/Array.md)
* [Stack](./docs/Stack.md)
* [Queue](./docs/Queue.md)
* [Deck](./docs/Deck.md)
* [Linked List](./docs/LinkedList.md)
* [Doubly Linked List](./docs/DoublyLinkedList.md)
* [Set](./docs/Set.md)
* [Dictionary](./docs/Dictionary.md)
* [Hash Table](./docs/HashTable.md)
* [Hash Table Separate Chaining](./docs/HashTableSeparateChaining.md)
* [Hash Table Linear Probing](./docs/HashTableLinearProbing.md)
* [Binary Search Tree](./docs/BinarySearchTree.md)
* [Min Heap](./docs/MinHeap.md)
* [Max Heap](./docs/MaxHeap.md)
* [Graph](./docs/Graph.md)