Code Monkey home page Code Monkey logo

sperm's Introduction

Stupendous Permutations

Sperm is a random permutations generator based on the ideas of group theory that allows you to generate very large permutations without extra memory consumption.

Gem Version Build Status Code Climate Coverage Status

Installation

Add this line to your application's Gemfile:

gem 'sperm'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sperm

Usage

Sperm.rand(5).each { |element| puts element }

This is a shorthand for:

Sperm::RandomPermutations.new(5).rand.each { |element| puts element }

You can also use your own source of randomness:

Sperm::RandomPermutations.new(5, Random.new(42))
Sperm::RandomPermutations.new(10**8, SecureRandom)

How it works

Computational complexity

Operation Time complexity Space complexity
Initialization O(n/ϕ(n) · log(n)) O(1)
Generation of next element O(1) O(1)

Copyright

Copyright © 2014 Arthur Khashaev. See LICENSE.txt for details.

sperm's People

Contributors

invizory avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

sperm's Issues

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.