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

geco

v0.11.1

Published

Geco, a (Constant Amortized Time) recursive generator* for k-combinations, chosen from a given set S of n elements, with and without replacement.

Downloads

239

Readme

Geco

NPM VERSION CODACY BADGE CODECLIMATE-TEST-COVERAGE LICENSE

NODE VERSION TRAVIS CI BUILD BUILD STATUS DEVDEPENDENCY STATUS

NPM MONTHLY NPM YEARLY NPM TOTAL

NPM GRAPH

Geco, a CAT (Constant Amortized Time) recursive generator* for k-combinations chosen from a given set S of n elements, with and without replacement.

It is extremely memory efficient and very fast, it generates all the k-combinations in a set of n elements, using a single sequence of n bits, only 1 bit per element.

It is also able to generate all the k-combinations of a given multiset, aka compositions with restricted parts, of which, combinations with repetition are the general case (without limits on possible repetitions).

NOTE: It generates combinations in Colexicographic Order.

Table of Contents


Install

$ npm install geco [-g]

require:

const Geco  = require( 'geco' );

Run Tests

to run all test files, install devDependencies:

 $ cd geco/
 # install or update devDependencies
 $ npm install 
 # run tests
 $ npm test

to execute a single test file simply do:

 $ node test/file-name.js

Run Benchmarks

$ cd geco/
$ npm run bench

to execute a single bench file, simply do:

 $ node bench/file-name.js

output example and running time:

- generate all boards of 5 cards from a deck of 52, without repetition/replacement

- the 52-card deck is:
  A♠ K♠ Q♠ J♠ T♠ 9♠ 8♠ 7♠ 6♠ 5♠ 4♠ 3♠ 2♠ 
  A♣ K♣ Q♣ J♣ T♣ 9♣ 8♣ 7♣ 6♣ 5♣ 4♣ 3♣ 2♣ 
  A♦ K♦ Q♦ J♦ T♦ 9♦ 8♦ 7♦ 6♦ 5♦ 4♦ 3♦ 2♦ 
  A♥ K♥ Q♥ J♥ T♥ 9♥ 8♥ 7♥ 6♥ 5♥ 4♥ 3♥ 2♥

- generating 5-combinations..

....

- total: 2598960 combinations
- rate:  621760 comb/sec
- time:  4.18 secs

- generating all 7-combinations (133784560)..

....

- total: 133784580 combinations
- rate:  580687 comb/sec
- time:  230.39 secs

Methods

Arguments between [ ] are optional.

| name | description | |:--------------------------|:-----------------------------------------------------------------------| | cnt | count the number of k-combinations of n elements, without repetition | | gen | get a generator to produce combinations of k elements from a given set, without repetition| | get | iterate on k-combinations of n elements, without replacement, represented as buffers | | get_bm | iterate on k-combinations of n elements, without replacement, represented as bitmaps | | mget | iterate on k-combinations from a mulitiset of v different types, represented as buffers |

Geco.cnt

get the total number of k-combinations from n elements, without replacement
'cnt' : function ( Number n, Number k ) : Number

Geco.gen

iterate on all k-combination of a given set, without replacement
/*
 * get a generator for iterating on all combinations of k elements,
 * chosen from the first n items of the given set. Optionally, it
 * may uses also a bitmap, for generating combinations.
 *
 * NOTE: it consumes only n bytes in memory to generate all
 * combinations, instead, with bitmap, it uses only n bits.
 */
'gen' : function *( Number n, Number k, Array set [, Boolean bitmap ] ) : GeneratorFunction

Geco.get

iterate on all k-combinations of n elements, without replacement, represented as buffers
/*
 * the iterator's value is a Buffer with k bytes set to 1.
 * Every 1 (a byte) represents a chosen element for the current combination.
 */
'get' : function ( Number n, Number k ) : GeneratorFunction

Geco.get_bm

iterate on all k-combinations of n elements, without replacement, represented as bitmaps (Toni)
/*
 * the iterator's value is a bitmap with k bits set to 1.
 * Every 1 (a bit) represents a chosen element for the current combination.
 *
 * NOTE: to check if the element at index i has been chosen use bitmap.chk( i ).
 */
'get_bm' : function ( Number n, Number k ) : GeneratorFunction

Geco.mget

iterate on k-combinations of a mulitiset of v different types, with replacement
/*
 * aka compositions with restricted parts, repeated elements are allowed within
 * certain limits.
 *
 * NOTE: when all specified repetitions are (>)= v, it simply generates all the
 * combinations with repetition. ( n + r − 1 )! / r!( n − 1 )!
 *
 * the iterator's value is a Buffer representing the number of elements chosen
 * for every type/value, according to the limit imposed by the repetition buffer.
 *
 * NOTE: the repetitions buffer should contain the nummber of max allowable
 * repetitions for every type/value. If the max repetitions for a chosen type
 * are > 256 you should use 2 byte per type (16 bits numbers), in the same
 * manner, if repetitions > 65536 you should use 4 bytes per type (32 bits).
 * The buffer returned by the iterator should be read coherently to the number
 * of bytes used for every type in the repetition buffer (1,2 or 4 bytes).
 */
'mget' : function ( Number k, Number v, Buffer | Number repetitions ) : GeneratorFunction

Examples

See examples.

MIT License

Copyright (c) 2018-present < Guglielmo Ferri : [email protected] >

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.