How to resolve the algorithm Ordered partitions step by step in the 11l programming language
How to resolve the algorithm Ordered partitions step by step in the 11l programming language
Table of Contents
Problem Statement
In this task we want to find the ordered partitions into fixed-size blocks. This task is related to Combinations in that it has to do with discrete mathematics and moreover a helper function to compute combinations is (probably) needed to solve this task.
p a r t i t i o n s (
a r g
1
,
a r g
2
, . . . ,
a r g
n
)
{\displaystyle partitions({\mathit {arg}}{1},{\mathit {arg}}{2},...,{\mathit {arg}}_{n})}
should generate all distributions of the elements in
{ 1 , . . . ,
Σ
i
1
n
a r g
i
}
{\displaystyle {1,...,\Sigma {i=1}^{n}{\mathit {arg}}{i}}}
into
n
{\displaystyle n}
blocks of respective size
a r g
1
,
a r g
2
, . . . ,
a r g
n
{\displaystyle {\mathit {arg}}{1},{\mathit {arg}}{2},...,{\mathit {arg}}_{n}}
. Example 1:
p a r t i t i o n s ( 2 , 0 , 2 )
{\displaystyle partitions(2,0,2)}
would create: Example 2:
p a r t i t i o n s ( 1 , 1 , 1 )
{\displaystyle partitions(1,1,1)}
would create: Note that the number of elements in the list is (see the definition of the binomial coefficient if you are not familiar with this notation) and the number of elements remains the same regardless of how the argument is permuted (i.e. the multinomial coefficient). Also,
p a r t i t i o n s ( 1 , 1 , 1 )
{\displaystyle partitions(1,1,1)}
creates the permutations of
{ 1 , 2 , 3 }
{\displaystyle {1,2,3}}
and thus there would be
3 !
6
{\displaystyle 3!=6}
elements in the list. Note: Do not use functions that are not in the standard library of the programming language you use. Your file should be written so that it can be executed on the command line and by default outputs the result of
p a r t i t i o n s ( 2 , 0 , 2 )
{\displaystyle partitions(2,0,2)}
. If the programming language does not support polyvariadic functions pass a list as an argument. Notation Here are some explanatory remarks on the notation used in the task description:
{ 1 , … , n }
{\displaystyle {1,\ldots ,n}}
denotes the set of consecutive numbers from
1
{\displaystyle 1}
to
n
{\displaystyle n}
, e.g.
{ 1 , 2 , 3 }
{\displaystyle {1,2,3}}
if
n
3
{\displaystyle n=3}
.
Σ
{\displaystyle \Sigma }
is the mathematical notation for summation, e.g.
Σ
i
1
3
i
6
{\displaystyle \Sigma _{i=1}^{3}i=6}
(see also [1]).
a r g
1
,
a r g
2
, . . . ,
a r g
n
{\displaystyle {\mathit {arg}}{1},{\mathit {arg}}{2},...,{\mathit {arg}}_{n}}
are the arguments — natural numbers — that the sought function receives.
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Ordered partitions step by step in the 11l programming language
Source code in the 11l programming language
F partitions(lengths)
[[[Int]]] r
[(Int, Int)] slices
V delta = -1
V idx = 0
L(length) lengths
assert(length >= 0, ‘lengths must not be negative.’)
delta += length
slices.append((idx, delta))
idx += length
V n = sum(lengths)
V perm = Array(1 .. n)
L
[[Int]] part
L(start, end) slices
V s = perm[start .. end]
I !s.is_sorted()
L.break
part.append(s)
L.was_no_break
r.append(part)
I !perm.next_permutation()
L.break
R r
F toString(part)
V result = ‘(’
L(s) part
I result.len > 1
result ‘’= ‘, ’
result ‘’= ‘{’s.join(‘, ’)‘}’
R result‘)’
F displayPermutations(lengths)
print(‘Ordered permutations for (’lengths.join(‘, ’)‘):’)
L(part) partitions(lengths)
print(toString(part))
:start:
I :argv.len > 1
displayPermutations(:argv[1..].map(Int))
E
displayPermutations([2, 0, 2])
You may also check:How to resolve the algorithm Sum of a series step by step in the Haskell programming language
You may also check:How to resolve the algorithm Knight's tour step by step in the XPL0 programming language
You may also check:How to resolve the algorithm Iterated digits squaring step by step in the Tcl programming language
You may also check:How to resolve the algorithm Find the intersection of two lines step by step in the Scala programming language
You may also check:How to resolve the algorithm The Twelve Days of Christmas step by step in the Mathematica/Wolfram Language programming language