npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bsh-data-structures

v1.0.4

Published

Implementations of various data structures written in Typescript compiled into Javascript

Downloads

2

Readme

#Summary Implementations of various data structures written in Typescript compiled into Javascript

Work in progress, use at own risk!

const ts = require("ts-implementations");

#CircularLinkedList const list = new ts.CircularLinkedList(); list.pushEnd(1); list.pushEnd(2); list.pushEnd(3);

const resultOne = list.insertBeforePrimitive(0, 1);
const resultTwo = list.insertAfterPrimitive(4, 3);

const searchResult = list.search(2);
const deleteResult = list.searchAndDelete(2);

const fullList = list.getList();
const listLength = list.getLength();

const tail = list.getTail();
const head = list.getTail().getNext();

#DoublyLinkedList const list = new ts.DoublyLinkedList(); list.pushEnd(1); list.pushEnd(2); list.pushEnd(3);

const node = list.getHead().getNext();
const nodeNext = node.getNext();
const nodePrev = node.getPrev();

#GraphNode const g = new ts.GraphNode("data"); const h = new ts.GraphNode("datum"); g.connectTwoWays(h);

const to = g.getToNodes();
const from = g.getFromNodes();

const i = new ts.GraphNode("datos");
const j = new ts.GraphNode("soda");
i.connectToOneWay(j);

#Priority Queue const pq = new ts.PriorityQueue(); pq.load("red1", MAX_PRIORITY); pq.load("red2", MAX_PRIORITY); pq.load("red3", 0); pq.load("orange1", 1); pq.load("orange2", 1); const RED_ONE = pq.next();

#Queue const q = new ts.Queue();

q.load({ data: "test" });
q.load({ data: "testTwo" });
q.load({ data: "testThree" });

const view = q.view(2);
const next = q.next();

#SinglyLinkedList const list = new ts.SinglyLinkedList(); list.pushEnd(1); list.pushEnd(2); const tail = list.getTail(); const nullNode = tail.getNext();

#Stack const stk = new ts.Stack(5); stk.put(true); stk.put({ toor: true }); const get = stk.get();