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

@datastructures-js/deque

v1.0.4

Published

A performant double-ended queue (deque) implementation in javascript.

Downloads

8,359

Readme

@datastructures-js/deque

npm npm npm

A performant double-ended queue (deque) implementation in javascript.

Contents

Install

npm install --save @datastructures-js/deque

require

const { Deque } = require('@datastructures-js/deque');

import

import { Deque } from '@datastructures-js/deque';

API

constructor

JS
// empty queue
const deque = new Deque();

// from an array
const deque = new Deque([1, 2, 3]);
TS
// empty queue
const deque = new Deque<number>();

// from an array
const deque = new Deque<number>([1, 2, 3]);

Deque.fromArray

JS
// empty queue
const deque = Deque.fromArray([]);

// with elements
const list = [10, 3, 8, 40, 1];
const deque = Deque.fromArray(list);

// If the list should not be mutated, use a copy of it.
const deque = Deque.fromArray(list.slice());
TS
// empty queue
const deque = Deque.fromArray<number>([]);

// with elements
const list = [10, 3, 8, 40, 1];
const deque = Deque.fromArray<number>(list);

pushFront

adds an element at the front of the queue.

deque.pushFront(30).pushFront(20).pushFront(10);

pushBack

adds an element at the back of the queue.

deque.pushBack(40).pushBack(50).pushBack(60);

front

peeks on the front element of the queue.

console.log(deque.front()); // 10

back

peeks on the back element of the queue.

console.log(deque.back()); // 60

popFront

removes and returns the front element in the queue.

console.log(deque.popFront()); // 10
console.log(deque.front()); // 20

popBack

removes and returns the back element in the queue.

console.log(deque.popBack()); // 60
console.log(deque.back()); // 50

isEmpty

checks if the queue is empty.

console.log(deque.isEmpty()); // false

size

returns the number of elements in the queue.

console.log(deque.size()); // 4

clone

creates a shallow copy of the queue.

const deque2 = Deque.fromArray([{ id: 2 }, { id: 4 } , { id: 8 }]);
const clone =  deque2.clone();

clone.popFront();

console.log(deque2.front()); // { id: 2 }
console.log(clone.front()); // { id: 4 }

toArray

returns a copy of the remaining elements as an array.

console.log(deque.toArray()); // [ 20, 30, 40, 50 ]

clear

clears all elements from the queue.

deque.clear();
deque.size(); // 0

Build

grunt build

License

The MIT License. Full License is here