Giter Club home page Giter Club logo

prime-lib's Introduction

prime-lib

About

Popular prime number functions, implemented in TypeScript, with focus on memory efficiency and performance, to be friendly for Web apps, and RXJS in particular.

It features many well-known optimization methods, such as Sieve of Eratosthenes, Meissel Lehmer, etc.

See the following resources:

  • API - all available functions
  • WiKi - to help choose a prime generator
  • Benchmarks - to see the performance

Installation

$ npm i prime-lib

Usage

Follow the usage examples below, based on your development environment.

JavaScript

Generating an array with the first 10 primes:

const {generatePrimes, stopOnCount} = require('prime-lib');

const i = generatePrimes(); // create infinite primes iterator 
const s = stopOnCount(i, 10); // stop-iterator after 10 values

const values = [...s]; // 2, 3, 5, 7, 11, 13, 17, 19, 23, 29

TypeScript

Generating an array of all primes up to 17:

import {generatePrimes, stopOnValue} from 'prime-lib';

const i = generatePrimes(); // create infinite primes iterator
const s = stopOnValue(i, 17); // stop-iterator when value reaches 17

const values = [...s]; // 2, 3, 5, 7, 11, 13, 17

RXJS

Adding a reusable RXJS wrapper first:

import {Observable, from} from 'rxjs';
import {generatePrimes, IPrimeOptions} from 'prime-lib';

export function primes(options?: IPrimeOptions): Observable<number> {
    return from(generatePrimes(options));
}
  • Generating the first 10 primes:
import {take} from 'rxjs';

primes().pipe(take(10))
    .subscribe(prime => {
        // 2, 3, 5, 7, 11, 13, 17, 19, 23, 29
    });
  • Generating 10 primes after 100:
import {take} from 'rxjs';

primes({start: 100}).pipe(take(10))
    .subscribe(prime => {
        // 101, 103, 107, 109, 113, 127, 131, 137, 139, 149
    });
  • Maximum-performance, buffered primes generation:
primes({boost: 10})
    .subscribe(prime => {
        // 2, 3, 5, 7, 11, 13, 17, 19, 23, 29
    });
  • Detecting primes in another sequence:
import {range, filter} from 'rxjs';
import {isPrime} from 'prime-lib';

range(0, 20).pipe(filter(a => isPrime(a)))
    .subscribe(prime => {
        // 2, 3, 5, 7, 11, 13, 17, 19
    });

API

Prime generators:

  • generatePrimes() - efficiency-focused, infinite prime generator
  • generatePrimes({start: x}) - efficiency-focused, infinite prime generator, starting from x
  • generatePrimes({boost: n}) - performance-focused prime generator, for up to n primes

Popular prime functions:

  • isPrime(x) - verifies if x is a prime number
  • countPrimes(x) - precise primes counter, up to x, using Meissel Lehmer algorithm
  • countPrimesApprox(x) - instant primes counter, up to x, with error margin < 1%
  • primeFactors(x) - calculates prime factorization

Work-in-progress:

  • nthPrime(n) - returns prime from index (not implemented yet)
  • nthPrimeApprox(n) - returns approximate prime from index (not implemented yet)

Extra helpers:

  • cachePrimes(n) - creates a gap-compressed cache of n primes (see WiKi)
  • stopOnCount(iterator, count) - stops the iterator, once count has been reached
  • stopOnValue(iterator, maxValue) - stops the iterator when maxValue is exceeded
  • stopWhen(iterator, cb) - stops the iterator when the callback returns a truthy value

prime-lib's People

Contributors

vitaly-t avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

ishandutta2007

prime-lib's Issues

BigInt issues

Although full support for bigint-s was added from start, its implementation isn't great, it is not fast enough, and buggy.

I am aware of those issues, and currently working on resolving them. Please note this is still an early version of the library.

In the meantime, regular number primes implementation is fast and reliable, and can be used safely.

primeFactors always return the same array

Steps to reproduce

import { primeFactors } from './primeFactors'
const a = primeFactors(7)
console.log(a)
const b = primeFactors(222)
console.log(b)
console.log(a)

Actual behavior

[ 7 ]
[ 2, 3, 37 ]
[ 2, 3, 37 ]

Expected behavior

[ 7 ]
[ 2, 3, 37 ]
[ 7 ]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.