Logo

Programming-Idioms

  • Perl
  • C#
  • Scheme

Idiom #143 Iterate alternatively over two lists

Iterate alternatively over the elements of the lists items1 and items2. For each iteration, print the element.

Explain what happens if items1 and items2 have different size.

(map (lambda (x)
       (display x)
       (newline))
     (foldr append '()
            (map list items1 items2)))
use List::SomeUtils qw(zip);
print for zip @items1, @items2;

print will warn about uninitialized value when lists have different size.

Wrap the statement in a block { } and include

no warnings "uninitialized";

to get rid of the warnings.
using System.Collections.Generic;
using System.Math;
for(int i = 0; i < Math.Max(items1.Count, items2.Count); i++)
{
  if (i < items1.Count) Console.WriteLine(items1[i]);
  if (i < items2.Count) Console.WriteLine(items2[i]);
}
(doseq [i (interleave items1 items2)]
  (println i))

interleave can receive any number of items, but truncates when any of them is exhausted

New implementation...