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

ts-implementations

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-implementations

! Deprecated, use bsh-data-structures !

latest
Source
npmnpm
Version
1.2.8
Version published
Maintainers
1
Created
Source

#Summary ! Deprecated, use bsh-data-structures !

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();

FAQs

Package last updated on 09 Aug 2018

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