How to resolve the algorithm Cartesian product of two or more lists step by step in the Clojure programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Cartesian product of two or more lists step by step in the Clojure programming language
Table of Contents
Problem Statement
Show one or more idiomatic ways of generating the Cartesian product of two arbitrary lists in your language. Demonstrate that your function/method correctly returns: and, in contrast: Also demonstrate, using your function/method, that the product of an empty list with any other list is empty. For extra credit, show or write a function returning the n-ary product of an arbitrary number of lists, each of arbitrary length. Your function might, for example, accept a single argument which is itself a list of lists, and return the n-ary product of those lists. Use your n-ary Cartesian product function to show the following products:
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Cartesian product of two or more lists step by step in the Clojure programming language
Source code in the clojure programming language
(ns clojure.examples.product
(:gen-class)
(:require [clojure.pprint :as pp]))
(defn cart [colls]
"Compute the cartesian product of list of lists"
(if (empty? colls)
'(())
(for [more (cart (rest colls))
x (first colls)]
(cons x more))))
(doseq [lst [ [[1,2],[3,4]],
[[3,4],[1,2]], [[], [1, 2]],
[[1, 2], []],
[[1776, 1789], [7, 12], [4, 14, 23], [0, 1]],
[[1, 2, 3], [30,], [500, 100]],
[[1, 2, 3], [], [500, 100]]
]
]
(println lst "=>")
(pp/pprint (cart lst)))
You may also check:How to resolve the algorithm Greatest subsequential sum step by step in the J programming language
You may also check:How to resolve the algorithm Inverted syntax step by step in the Fōrmulæ programming language
You may also check:How to resolve the algorithm Events step by step in the C programming language
You may also check:How to resolve the algorithm Simulate input/Keyboard step by step in the Python programming language
You may also check:How to resolve the algorithm Sort stability step by step in the ooRexx programming language