New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ts-dsas

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-dsas

A collection of data structures and algorithms implemented in TypeScript.

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
0
Created
Source

TypeScript Data Structures & Algorithms

This project contains a collection of data structures implemented in TypeScript. It is designed to help developers understand and utilize common data structures in their TypeScript projects.

Table of Contents

  • Installation
  • Usage
  • Data Structures
  • Contributing
  • License

Installation

To install the package, use npm or yarn:

npm install ts-dsas

or

yarn add ts-dsas

Usage

Import the data structures you need in your TypeScript project:

import { Tree, Stack, Queue } from "ts-dsas";

const tree = new Tree<number>();
const stack = new Stack<number>();
const queue = new Queue<number>();

Data Structures

This package includes the following data structures:

  • Stack
  • Queue
  • BinaryTree
  • Tree

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Keywords

data structures

FAQs

Package last updated on 05 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts