Formerly clojure.contrib.combinatorics.
Efficient, functional algorithms for generating lazy sequences for common combinatorial functions.
Latest stable release: 0.1.6
CLI/deps.edn
dependency information:
org.clojure/math.combinatorics {:mvn/version "0.1.6"}
Leiningen dependency information:
[org.clojure/math.combinatorics "0.1.6"]
Maven dependency information:
<dependency>
<groupId>org.clojure</groupId>
<artifactId>math.combinatorics</artifactId>
<version>0.1.6</version>
</dependency>
Note: If you are using Clojure 1.2 - 1.6, you will need math.combinatorics version 0.1.3.
The following functions take sequential collections
(such as lists and vectors) as inputs. If you want
to call a function on a set, you must explicitly
call seq
on the set first.
All functions return lazy sequences.
(ns example.core
(:require [clojure.math.combinatorics :as combo]))
; PERMUTATIONS
; all the unique arrangements of items
=> (combo/permutations [1 2 3])
([1 2 3] [1 3 2] [2 1 3] [2 3 1] [3 1 2] [3 2 1])
; Note that permutations intelligently handles duplicate items
=> (combo/permutations [1 1 2])
([1 1 2] [1 2 1] [2 1 1])
; These functions are more efficient than calling count, nth, drop
; on the underlying sequence
=> (combo/count-permutations [1 2 3])
6
=> (combo/count-permutations [1 1 2])
3
=> (combo/nth-permutation [1 2 3] 3)
[2 3 1]
=> (combo/nth-permutation [1 1 2 2] 5)
[2 2 1 1]
=> (combo/drop-permutations [1 2 3] 3)
([2 3 1] [3 1 2] [3 2 1])
; For a sortable collection of items, you can find out where it is
; in the lexicographic sequence of permutations
=> (combo/permutation-index [\a \b \a \c \a \b])
16
=> (combo/nth-permutation [\a \a \a \b \b \c] 16)
[\a \b \a \c \a \b]
; COMBINATIONS
; all the unique ways of taking t different elements from items
(combo/combinations [1 2 3] 2)
;;=> ((1 2) (1 3) (2 3))
; Note that combinations intelligently handles duplicate items
; treating the input list as a representation of a 'multiset'
=> (combo/combinations [1 1 1 2 2] 3)
((1 1 1) (1 1 2) (1 2 2))
; These functions are more efficient than calling count and nth
; on the underlying sequence
=> (combo/count-combinations [1 1 1 2 2] 3)
3
=> (combo/nth-combination [1 2 3 4 5] 2 5)
[2 4]
; Permuting all the combinations
=> (combo/permuted-combinations [1 2 3] 2)
([1 2] [2 1] [1 3] [3 1] [2 3] [3 2])
=> (combo/permuted-combinations [1 2 2] 2)
([1 2] [2 1] [2 2])))
; SUBSETS
; all the subsets of items
=> (combo/subsets [1 2 3])
(() (1) (2) (3) (1 2) (1 3) (2 3) (1 2 3))
; Note that subsets intelligently handles duplicate items
; treating the input list as a representation of a 'multiset'
=> (combo/subsets [1 1 2])
(() (1) (2) (1 1) (1 2) (1 1 2))
; These functions are more efficient than calling count and nth
; on the underlying sequence
=> (combo/count-subsets [1 1 2])
6
=> (combo/nth-subset [1 1 2] 3)
[1 1]
; CARTESIAN PRODUCT
; all the ways to take one item from each passed-in sequence
=> (combo/cartesian-product [1 2] [3 4])
((1 3) (1 4) (2 3) (2 4))
; SELECTIONS
; all the ways to take n (possibly the same) items from the sequence of items
=> (combo/selections [1 2] 3)
((1 1 1) (1 1 2) (1 2 1) (1 2 2) (2 1 1) (2 1 2) (2 2 1) (2 2 2))
; PARTITIONS
; all the partitions of items.
=> (combo/partitions [1 2 3])
(([1 2 3])
([1 2] [3])
([1 3] [2])
([1] [2 3])
([1] [2] [3]))
; Note that partitions intelligently handles duplicate items
=> (combo/partitions [1 1 2])
(([1 1 2])
([1 1] [2])
([1 2] [1])
([1] [1] [2]))
; You can also specify a min and max number of partitions
(combo/partitions [1 1 2 2] :min 2 :max 3)
(([1 1 2] [2])
([1 1] [2 2])
([1 1] [2] [2])
([1 2 2] [1])
([1 2] [1 2])
([1 2] [1] [2])
([1] [1] [2 2]))
Refer to docstrings in the clojure.math.combinatorics
namespace for
additional documentation.
Release 0.2.0 on 2023-03-18
Release 0.1.6 on 2019-07-24
permuted-combinations
Release 0.1.5 on 2019-04-07
Release 0.1.4 on 2017-01-06
Release 0.1.3 on 2016-06-02
Release 0.1.2 on 2016-05-18
Release 0.1.1 on 2015-03-20
Release 0.1.0 on 2015-03-17
Release 0.0.9 on 2015-03-16
Release 0.0.8 on 2014-07-20
Release 0.0.7 on 2013-11-13
subsets
to minimize memory usage.Release 0.0.6 on 2013-10-31
Release 0.0.5 on 2013-10-31
Release 0.0.4 on 2013-03-26
Release 0.0.3 on 2012-07-06
Release 0.0.2 on 2011-10-24
Release 0.0.1 on 2011-09-29
Distributed under the Eclipse Public License, the same as Clojure.
Can you improve this documentation? These fine people already did:
Mark Engelberg, Alex Miller, Sean Corfield, David James & Christian RomneyEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close