Logo

Programming-Idioms

  • Haskell
  • Ruby
  • Pascal

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.

mapM_ print . concat 
	$ zipWith (\a b -> [a,b]) items1 items2

the extra elements at the end of the longer list are ignored
interweave :: [a] -> [a] -> [a]   -- optional signature
interweave [] ys = ys
interweave xs [] = xs
interweave (x:xs) (y:ys) = x : y : interweave xs ys

main = mapM_ print $ interweave items1 items2

$ is the function application operator of Haskell to eliminate annoying parentheses.

E.g., f $ g x y z == f (g x y z)
items1.zip(items2){|pair| puts pair}

There will be as much pairs as there are items in items1. items2 will be "padded" with nils or trimmed as needed.
uses Math;
for i := 0 to Min(items1.Count-1,items2.Count-1) do 
  writeln(items1[i],', ',items2[i]);

If items1 and items2 have different size, it will print only as much elements as the smallest one has.
(doseq [i (interleave items1 items2)]
  (println i))

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

New implementation...