Another snippet to compute the permutations of all subsets.
-
Recent Posts
Categories
Archives
- August 2016
- June 2016
- April 2016
- February 2016
- October 2015
- May 2015
- January 2015
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- April 2014
- March 2014
- February 2014
- December 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- August 2012
- June 2012
- April 2012
- January 2012
- December 2011
- November 2011
- October 2011
- August 2011
- July 2011
- December 2010
- November 2010
- September 2010
- July 2010
- June 2010
- May 2010
- March 2010
- December 2009
- November 2009
- October 2009
- August 2009
- July 2009
- June 2009
- May 2009
- August 2008
- June 2008
- May 2008
- March 2008
- February 2008
- December 2007
- November 2007
- October 2007
- August 2007
- June 2007
- May 2007
- March 2007
- November 2006
- August 2006
- July 2006
- February 2006
- October 2005
- September 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- December 2004
- June 2004
- March 2004
- February 2004
- December 2003
- October 2003
- June 2003
Meta
I’ve just posted an entry showing how to do that, and how many outputs it yields.
Thanks for asking!
i really like these permutation algorithms because I have no idea how they work and that’s the fun :)
i am actually looking for an algorithm, which would give me all possible combination for a list of chars.
say I have: a list l = [‘a’,’b’,’c’]
when you set a border of 3, it wil generate the following
a
b
c
aa
ab
ac
ba
bb
bc
ca
cb
cc
aaa
aab
until ‘ccc’
etcetera
I need an algorithm like this:
For a given integer n, find all integer subsets s1, s2, …, sk where sum(s1) = n, sum(s2) = n etc.
For example, for n = 5
s1 = {5}
s2 = {4, 1}
s3 = {3, 2}
.
.
.
sk = {1, 1, 1, 1, 1}
Thanks in advance…
M. Kara