Here is a fairly common problem. We have an array of arrays. We'd like to call some function for every combination of elements from the different arrays. Conceptually we'd like to do something like this:

for my $x (1, 2) {
  for my $y ('a', 'b') {
    for my $z ('A', 'B') {
      print "$x $y $z\n";
    }
  }
}

except that we don't want to have to write out a different number of loops if we have a different number of elements. In other words we want to be able to implement the above as something like:

nested_for(
  sub {print "@_\n"},
  [1, 2], ['a', 'b'], ['A', 'B']
);

and get the same result. (Exact syntax may vary by language.)

One solution per post, please.

Index of Solutions

(with at least +1 vote)

link|improve this question
show 2 more comments
feedback

35 Answers

1 2

APL (one-liner):

(Unicode characters in code snippet may not show in some browsers.)

x←'1' '2'
y←'a' 'b'
z←'A' 'B'
⎕←,x∘.,y∘.,z

Outputs:

 1aA  1aB  1bA  1bB  2aA  2aB  2bA  2bB

I'm using the outer product (∘.,) to combine three vectors to a matrix, then flatten the matrix (,) back to a vector. Finally, ⎕← shows the result.

link|improve this answer
show 2 more comments
feedback

Perl 6

Built in!

my @x = 1..2;
my @y = 'a'..'b';
my @z = 'A'..'B';

for @x X @y X @z -> $x, $y, $z {
    say "$x $y $z";
}

Cross operator X
for statement

addendum:
If using the cross operator multiple times or more than one loop variable is still cheating, you could get away with the following somewhat less sane solution that uses the reduction operator:

for @@( [X] \@x, \@y, \@z ) -> @slice {
    say @slice.join(' ');
}

Alternatively, to operate on a list of lists:

my @foo = \@x, \@y, \@z;
for @@( [X] @foo ) -> @slice {
    say @slice.join(' ');
}
link|improve this answer
show 6 more comments
feedback

Scala:

val nums = List(1, 2)
val lows = List('a', 'b')
val highs = List('A', 'B')

for (x <- nums; y <- lows; z <- highs) {
  printf("%s %s %s%n", x, y, z)
}

Or if you prefer:

for {
  x <- nums
  y <- lows
  z <- highs
} printf("%s %s %s%n", x, y, z)

The neat thing about this construct is not defined by Scala specifically for List, the transformation is more generic than that. In fact, it's even better than Java's enhanced for-loop, which works on all Iterable. Both of the above Scala snippets will be translated into the following higher-order invocations:

nums.foreach { x =>
  lows.foreach { y =>
    highs.foreach { z =>
      printf("%s %s %s%n", x, y, z)
    }
  }
}

This means that any type which declares foreach accepting a function of arity-1 as a single parameter can be used with Scala's imperative for-comprehensions as shown. Thus, you can do this for arrays, maps, sets, or even custom types. It's a lot like C#'s LINQ, and reasonably so considering they both have their roots in Haskell's do-notation.

Oh, and in case there was any ambiguity, this works for anything that declares foreach, thus including all supported collections (heterogeneous and homogeneous alike).

link|improve this answer
show 1 more comment
feedback

To get things going, here is a Perl solution:

nested_for(
  sub {print "@_\n";},
  [1, 2], ['a', 'b'], ['A', 'B']
);

sub nested_for {
  ret_iter(@_)->();
}

sub ret_iter {
  my $fn = shift;
  my $range = pop;
  my $sub = sub {$fn->(@_, $_) for @$range};
  return @_ ? ret_iter($sub, @_) : $sub;
}
link|improve this answer
show 2 more comments
feedback

In Common Lisp see the Alexandria package and search for map-product:

(defun map-product (function list &rest more-lists) ...)

Returns a list containing the results of calling FUNCTION with one argument from LIST, and one from each of MORE-LISTS for each combination of arguments. In other words, returns the product of LIST and MORE-LISTS using FUNCTION.

Example:

(map-product 'list '(1 2) '(3 4) '(5 6)) => ((1 3 5) (1 3 6) (1 4 5) (1 4 6)
                                             (2 3 5) (2 3 6) (2 4 5) (2 4 6))

In case you are interested in the details it is implemented as:

(defun map-product (function list &rest more-lists)
  (labels ((%map-product (f lists)
             (let ((more (cdr lists))
                   (one (car lists)))
               (if (not more)
                   (mapcar f one)
                   (mappend (lambda (x)
                              (%map-product (curry f x) more))
                            one)))))
    (%map-product (if (functionp function)
                      function
                      (fdefinition function))
                  (cons list more-lists))))
link|improve this answer
show 1 more comment
feedback

Using NestedLoops() from Algorithm-Loops which can be used in different ways (calling a code ref or returning an iterator). Here's your example:


use Algorithm::Loops qw(NestedLoops);

NestedLoops( [[1, 2], ['a', 'b'], ['A', 'B']], sub {print "@_\n"}, );

link|improve this answer
feedback

Java w/ Decorators. Iterates over last list first, first list last (easily reversed, of course).

public final class Loop {

   public static void nestedFor(final Method sub, final List... lists) {
      Method m = sub;
      for (final List list : lists) {
         m = new Iterator(list, m);
      }
      m.execute(new ArrayList());
   }

   interface Method {
      void execute(List objs);
   }

   private static class Iterator implements Method {

      private final List list;
      private final Method method;

      public Iterator(final List list, final Method method) {
         this.list = list;
         this.method = method;
      }

      @Override
      public void execute(final List objs) {
         for (final Object o : list) {
            objs.add(o);
            method.execute(objs);
            objs.remove(o);
         }
      }
   }

   private static class Printer implements Method {

      @Override
      public void execute(final List objs) {
         for (final Object o : objs) {
            System.out.print(o + " ");
         }
         System.out.println();
      }

   }

}
link|improve this answer
feedback

Haskell, without using the List monad (which makes it too easy)

cartesianProduct [] = [[]]
cartesianProduct (heads:rest) = concatMap (\head -> map (head:) subProduct)
    where subProduct = cartesianProduct rest
link|improve this answer
feedback

In Python, with generators & recursion:

def nested_for(items):
    def _outer_product(depth, current):
        if depth == 1:
            return (current + [elem] for elem in items[-depth])
        else:
            return (res 
                    for elem in items[-depth]
                    for res in _outer_product(depth - 1, current + [elem]))
    if items:
        return _outer_product(len(items), [])
    else:
        return []

def apply_all(action, iterable):
    for elem in iterable:
        action(elem)

def action(elem):
    print elem

apply_all(action, nested_for([[1, 2], ['a', 'b'], ['A', 'B']]))
link|improve this answer
feedback

In Nemerle using a macro:

macro nested_for(lists, block)
syntax("nested_for", lists, block) {
    def build(lists) {
        | [] => block
        | <[ $name in $sub ]> :: tail =>
            <[ 
                foreach($(name.ToString() : dyn) in $sub)
                    ${ build(tail) }
            ]>
    }

    build(lists)
}

To use (note: the print and <- string formatting macros are from the Nextem library):

nested_for(x in [1, 2], y in ['a', 'b'], z in ['A', 'B'])
    print "{0} {1} {2}" <- (x, y, z)
link|improve this answer
show 1 more comment
feedback

Haskell, for lists of different types:

[printf "%d %s %s\n" x y z | x <- [1, 2], y <- ["ab"], z <- ["AB"]]

For lists of lists:

cp []       =  [[]]
cp (xs:xss) =  [y:ys | y <- xs, ys <- cp xss]

printEm xs = mapM (putStrLn . intercalate " " . map show) (cp xs)

main = printEm [[1,2], [3,4], [5,6]]
link|improve this answer
feedback

It's not just 'conceptually' that you'd want to do that: it's what you would end up doing in any imperative language. In Python, you could use a generator function and a function to generate all combinations that together would pretty neatly express what you are doing, but in truth, it's still a for .. for .. for ..

Unless you think recursive answers, such as I see appearing now, are more intuitive and expressive, but I sure as hell do not agree with that. :)

link|improve this answer
show 1 more comment
feedback

Here is a Ruby answer due to Christoph Rippel

def each (arg,*more_args)
      ( [] != more_args ) ?
               arg.each {|l| each(*more_args) {|r| yield [l]+ r }} :
               arg.each { |r| yield [r] }
end

each( 1..2, 'a'..'b', 'A'..'B') { |args|   puts args.join(" ") }
link|improve this answer
feedback

Ruby:

def loopme( list, reg = [], &block )
 if( list.length > 0 )
   list[0].each{ |x|
    m = list.clone;  
    m.shift;
    loopme( m, reg +[x] , &block );
   }
 else
  block.call( reg )
 end
end
loopme( [[1,2],[3,4],[5,6]] ) {  |x|  p x }

( Note, the double bracketing is needed to pass all the positional registers down the stack )

Output:

[1, 3, 5]
[1, 3, 6]
[1, 4, 5]
[1, 4, 6]
[2, 3, 5]
[2, 3, 6]
[2, 4, 5]
[2, 4, 6]

And heres a variant with mapping instead.

def loopme( list, reg = [], &block )
  if( list.length > 1 )
    out = [];
    list[0].each{ |x|
      m = list.clone;  
      m.shift;
      out = out + loopme( m,  reg + [x] , &block )
    }
    return out
  else
   return list[0].map{ |x|
     block.call( reg + [x] )
   }
  end
end

require "pp";

pp loopme( [[1,2],[3,4],[5,6]] ) {  |x|  ['hello',x,'world'] }
[["hello", [1, 3, 5], "world"],
 ["hello", [1, 3, 6], "world"],
 ["hello", [1, 4, 5], "world"],
 ["hello", [1, 4, 6], "world"],
 ["hello", [2, 3, 5], "world"],
 ["hello", [2, 3, 6], "world"],
 ["hello", [2, 4, 5], "world"],
 ["hello", [2, 4, 6], "world"]]

( Note: Using tree flattening for ease of use.

link|improve this answer
feedback

Cheating Perl version. (Sometimes useful in golf.)

print "$_\n" for glob "{1,2}\\ {a,b}\\ {A,B}"
link|improve this answer
feedback

In Python:

def loop(action, values, *args):
    if values is None:
        values = []
    if args:
        for value in args[0]:
            loop(action, values + [value], *args[1:])
    else:
        action(*values)

def action(a, b, c):
    print a, b, c

loop(action, None, [1, 2], ['a', 'b'], ['A', 'B'])
link|improve this answer
feedback

Ruby:

def nested_for(axes, args = [], &block)
    if axes.empty?
    	yield args
    else
    	axes[0].each do |value|
    		nested_for(axes[1,axes.length], args + [value], &block)
    	end
    end
end

nested_for([[1, 2], [3, 4], [5, 6]]) do |args|
    puts args.join(" ")
end
link|improve this answer
feedback

Permutative/Generative version:

( Nonrecursive / Ruby )

def loopme( list, &block )
 perms = [];
 list[0].each{ |set|
   perms.push([set])
 }
 list[1..-1].each{ |set|
   newperms = [];
   perms.each{ |oldperms|
     set.each{ |item|
      newperms.push( oldperms + [item] )
     }
   }
   perms = newperms
 }
 return perms.each{ |x| block.call(x) }
end

To make into a map equivalent, change the last line.

link|improve this answer
feedback

Javascript:

function nested_for(axes, args, delegate) {
	if (axes.length == 0) {
		delegate(args);
	}
	else {
		var axis = axes[0];
		for (var i = 0; i < axis.length; i++) {
			nested_for(axes.slice(1), args.concat([axis[i]]), delegate);
		}
	}
}

nested_for([[1, 2], [3, 4], [5, 6]], [], function(args) {
	alert(args.join(" "));
});
link|improve this answer
feedback

Apart from levy's answer, I decided to try writing a Common Lisp version too. I don't like my version very much, because of the need to modify the expansion "after the fact"; I'm a newbie, and could do with some tips on how to make it better. :-)

(defmacro nested-for (func &rest sets)
  (let* ((holder `(funcall ,func))
         syms
         (result holder))
    (dolist (set (nreverse sets))
      (let ((sym (gensym)))
        (push sym syms)
        (setq result `(dolist (,sym ,set) ,result))))
    (setf (cddr holder) syms)
    result))
link|improve this answer
feedback

tested D

template T(t...)
{
  alias t T;
}

template Tof(uint i, Ty)
{
  static if(i >0) alias T!(Ty, Tof!(i-1,Ty)) Tof;
  else            alias T!() Tof;
}

void Loop(T, int i)(T[][i] arr, void delegate(Tof!(i, T)) dg)
{
  Inner!(T,i,i)(arr, dg);
}

void Inner(T, int i, int j)(T[][i] arr, void delegate(Tof!(i, T)) dg, Tof!(i-j, T) val)
{
  static if(j > 0)
    foreach(v;arr[j-1])
      Inner!(T,i,j-1)(arr,dg,v,val);
  else
    dg(val);
}

void main()
{
  Loop!(int,4)([[1,2][], [1], [1,2,3],[1,2,3,4,5,6,7,8]], 
  (int i, int j, int k, int m)
  {
    writef("%s,%s,%s,%s\n",i,j,k,m);
  });
}
link|improve this answer
feedback

No LINQ sample, so here is one:

var query =
  from a in list1
  from b in list2
  from c in list3
  select new { a = a, b = b, c = c };
link|improve this answer
show 5 more comments
feedback

Python 2.6

import itertools

def nested_for(func, *iterables):
    for item in itertools.product(*iterables):
        func(*item)

def print_em(*args):
    print " ".join("%s" % arg for arg in args)

nested_for(print_em, [1, 2], ['a', 'b'], ['A', 'B'])
link|improve this answer
feedback

Here's an Erlang version

nested(Fun, ListOfLists) ->
  nested(Fun, ListOfLists, {}).

nested(Fun, [], Current) ->
  Fun(Current);
nested(Fun, ListOfLists, Current) ->
  [List|T] = ListOfLists,
  lists:foreach(fun(Item) -> nested(Fun, T, erlang:append_element(Current, Item)) end, List).

And it would be called like:

nested(fun(Item) -> io:format("~w~n", [Item]) end, [ [1,2], ['a','b'], ['A', 'B']]).

Although to be honest, I would normally just use a list comprehension as follows:

lists:foreach(fun(Item) -> io:format("~w~n", [Item]) end, [{X,Y,Z} || X <- [1,2], Y <- ['a','b'], Z <- ['A', 'B'] ]).
link|improve this answer
feedback

D, no (extra) template stuff, no recursion, no "nested for loops"

void Loop(T)(T[][] arr, void delegate(T[]) dg)
{
  int[] index = new int[arr.length];  // set of indexes
  foreach(ref i;index)i=0;

  T[] val = new T[arr.length]; // set of values

  // main loop
  outer: while(true)
  {
    // select values
    foreach(int i, a;arr) val[i] = a[index[i]];

    dg(val); // call function

    for(int i=0; i < arr.length; i++) // inc, roll & continue on overflow
    {
      index[i]++;
      if(index[i] < arr[i].length) continue outer;
      index[i]=0;
    }

    return; // for loop continues outer on non-terminating case
  }
}


void main()
{
  Loop!(int)([[1,2][], [1], [1,2,3],[1,2,3,4,5,6,7,8]], 
    (int[] i){   writef("%s\n",i);   });
}
link|improve this answer
show 2 more comments
feedback

C++ using functional programming techniques: no for loops!

Implements an iterator using STL algorithms and functional libraries. It's long (132 lines), it's crazy, this is why functional programming was made in the first place... but hey, it works! And without a single loop or recursive call - everything's done with functions like partial_sum and transform.

#include <iostream>
#include <vector>
#include <algorithm>
#include <numeric>
#include <functional>

using namespace std;

template <typename T>
static void print(const vector<T> &vec)
{
    ostream_iterator<T> output(cout, " ");
    copy(vec.begin(), vec.end(), output);
    cout << endl;
}

template <typename T>
ostream& operator << (ostream& os, const vector<T> &vec)
{
    ostream_iterator<T> output(cout, " ");
    copy(vec.begin(), vec.end(), output);
    return os;
}

template <typename T>
class NestedForIterator : public iterator<input_iterator_tag, vector<T> >
{
private:
    const vector< vector<T> > *vecs;
    vector<int> sizes;
    vector<int> cumProd;
    int currIndex;
    int numCombos;
    vector<T> current;

    // Utility lambdas
    static int vecSize(const vector<T> &vec) { return vec.size(); }
    static T vecFirst(const vector<T> &vec) { return vec[0]; }
    static T vecAt(const vector<T> &vec, int i) { return vec[i]; }

    // Creates a nonfunctional instance where currIndex = ending.
    NestedForIterator(const vector< vector<T> > *vecsIn, int ending) :
    vecs(vecsIn), sizes(vecsIn->size()), cumProd(vecsIn->size()),
    currIndex(ending) {}

public:
    // Note: does not take ownership of vecsIn
    NestedForIterator(const vector< vector<T> > *vecsIn) : 
    vecs(vecsIn), sizes(vecsIn->size()), cumProd(vecsIn->size() + 1, 1), 
    currIndex(0), current(vecsIn->size())
    {
        transform(vecs->begin(), vecs->end(), sizes.begin(), vecSize);
        // For sizes (a,b,c,d...), make the shifted cumulative product (1,a,ab,abc...)
        partial_sum(sizes.begin(), sizes.end(), (++cumProd.begin()), multiplies<int>());
        numCombos = cumProd.back();
        cumProd.pop_back();

        cout << "Sizes: " << sizes << endl;
        cout << "Cumulative product: " << cumProd << endl;
        cout << "Number of combinations: " << numCombos << endl;

        // Initialize current vector to the first combination
        transform(vecs->begin(), vecs->end(), current.begin(), vecFirst);
    }

    NestedForIterator(const NestedForIterator<T>& x) : 
    vecs(x.vecs), sizes(x.sizes), cumProd(x.cumProd), 
    currIndex(x.currIndex), numCombos(x.numCombos), current(x.current) {}

    // Prefix increment
    NestedForIterator& operator++() 
    {
        ++currIndex;

        // indices[i] = currIndex / cumProd[i] % sizes[i].
        vector<int> indices(vecs->size());
        // Make lambda i : currIndex / i
        binder1st< divides<int> > currIndexDiv = bind1st(divides<int>(), currIndex);
        transform(cumProd.begin(), cumProd.end(), indices.begin(), currIndexDiv);

        transform(indices.begin(), indices.end(), sizes.begin(), 
            indices.begin(), // output in place
            modulus<int>());

        // current[i] = vecs[i][indices[i]]
        transform(vecs->begin(), vecs->end(), indices.begin(), 
            current.begin(), // output to current
            vecAt);

        return *this;
    }

    // Postfix increment
    NestedForIterator operator++(int)
    {
        cout << "postfix" << endl;
        NestedForIterator old(*this);
        operator++();
        return old;
    }

    bool operator==(const NestedForIterator &rhs) 
    { return vecs == rhs.vecs && currIndex == rhs.currIndex; }

    bool operator!=(const NestedForIterator &rhs)
    { return vecs != rhs.vecs || currIndex != rhs.currIndex; }

    const vector<T>& operator*() { return current; }
    const vector<T>* operator->() { return &current; }

    NestedForIterator end() { return NestedForIterator(vecs, numCombos); }
};

int main()
{
    string s1 = "abcd", s2 = "efg", s3 = "hijkl";
    vector<unsigned char> v1(s1.begin(), s1.end()), v2(s2.begin(), s2.end()),
        v3(s3.begin(), s3.end());

    vector< vector<unsigned char> > vecs;
    vecs.push_back(v1);
    vecs.push_back(v2);
    vecs.push_back(v3);

    ostream_iterator< const vector<unsigned char> > out_it(cout, " ");

    for_each(vecs.begin(), vecs.end(), print<unsigned char>);

    NestedForIterator<unsigned char> it(&vecs), itEnd = it.end();

    for_each(it, itEnd, print<unsigned char>);
}
link|improve this answer
feedback

Scheme:

 (define-syntax foreach
  (lambda (x)
    (syntax-case x (=>)
      [(_ (v => l) ... e)
        (let ((p (map cons #'(v ...) #'(l ...))))
          (let f ((p p))
            (cond 
              [(null? p) #'e]
              [(null? (cdr p))
                #`(map (lambda (#,(caar p)) e) 
                    #,(cdar p))]
              [else
                #`(apply append 
                    (map 
                      (lambda (#,(caar p)) 
                        #,(f (cdr p))) 
                      #,(cdar p)))])))])))

    (foreach 
      [a  => '(1 2 3)]
      [b  => '(4 5 6)]
      (cons a b))
link|improve this answer
feedback

C# using delegates and anonymous methods

using System;
using System.Collections.Generic;

class MainClass
{

   delegate void Action(List<object> arguments);

   static void nestFor(Action action, List<object> arguments, List<List<object>> listOfLists)
   {
        if (listOfLists.Count == 0)
        {
            action(arguments);
            return;
        }
        List<object> targets = listOfLists[0];
        List<List<object>> newLol = new List<List<object>>(listOfLists);
        newLol.RemoveAt(0);
        foreach(object o in targets)
        {
            List<object> newArgs = new List<object>(arguments);
            newArgs.Add(o);
            nestFor(action, newArgs, newLol);
        }
   }

   public static void Main(string[] args)
   {
        List<List<object>> lol = new List<List<object>>();
        List<object> a = new List<object>(new object[]{0,1,2,3});
        List<object> b = new List<object>(new object[]{"a", "b", "c"});
        List<object> c = new List<object>(new object[]{"A", "B"});

        lol.Add(a); 
        lol.Add(b);
        lol.Add(c);

        nestFor(delegate(List<object> arguments) {
            arguments.ForEach( delegate(object o) { 
                Console.Write(o.ToString() + " ");
               });
            Console.WriteLine();
        }, new List<object>(), lol);
   }
}
link|improve this answer
feedback

here is Icon (early generator based language)


procedure main(args)
    every write( !(1|2)||" "||!&lcase||" "||!&ucase )
end
link|improve this answer
feedback

Objective C:

First, the final output: 1 a A, 1 a B, 1 b A, 1 b B, 1 c A, 1 c B, 2 a A, 2 a B, 2 b A, 2 b B, 2 c A, 2 c B

Some of the matrix based approaches are interesting, but what happens when arrays have different numbers of elements?

Here's the code, recursive in nature (this first bit here I just included to show the data I initialized the array with):

NSMutableArray *allArrays = [NSMutableArray array];
[allArrays addObject:[NSArray arrayWithObjects:@"1", @"2", nil]];
[allArrays addObject:[NSArray arrayWithObjects:@"a", @"b", @"c", nil]];
[allArrays addObject:[NSArray arrayWithObjects:@"A", @"B", nil]];
[self doGatherResultsFromArray:allArrays 
                    baseString:@"" 
               performSelector:@selector(doPrintResult:)];

.....

  // Here's the method called when all the elements are together    
  - (void) doPrintResult:(NSString *)result  { NSLog(@"%@", result); }

  -(void) doGatherResultsFromArray:(NSArray *)currentArray baseString:(NSString *)baseString performSelector:(SEL)selector
  {
    if ( [currentArray count] == 0 )
      [self performSelector:selector withObject:baseString];
    else
      for ( NSObject *currentObject in [currentArray objectAtIndex:0] )
      {
        [self doGatherResultsFromArray:[currentArray subarrayWithRange:NSMakeRange(1, [currentArray count]-1 )] 
                            baseString:[NSString stringWithFormat:@"%@ %@", baseString, currentObject]
                       performSelector:selector];
      }
  }
link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.