I am using docjure and it needs a column map for its select-columns function. I would like to grab all my columns without having to specify it manually. How do I generate the following as a lazy infinite vector sequence [:A :B :C :D :E ... :AA :AB :AC .... :ZZ ... :XFD]?
|
|
Your question boils down to: "How do I convert a number to a base-26 string with the alphabet A-Z?". Here's one way to do that - probably not the most concise way, but making it more elegant is left as an exercise for the reader :). Assume that numbers 0-25 map to 'A'-'Z', 26 maps to 'AA', etcetera. First we define a function
That gives you a way to generate an infinite sequence of column keywords:
|
||||
|
|
|
The essential clojure function for corecursion (and "tying the knot" is about it, no?) is iterate:
EDIT: Generalization of the function to return the "ordered" subsets of a set
|
||||
|
|
|
This answer is wrong; hopefully in an educational way. mathematically what you are asking for is a lazy sequence of all subsets of the infinite sequence of the alphabet.
project.clj:
using math.combanatorics:
|
|||||||||||||||
|
|
I think this may be the kind of thing you were looking for (if not, well, at least it is what I thought the "correct" answer should be ;o).
Code in git. I suspect I am abusing The idea is pretty simple: I take the output from the sequence and feed it back on itself. For each value in the output (which is also the input), I generate a new output by appending each of the letters in the seed sequence. Since this is circular it just keeps on going (there's an initial "" which is in the input, but not the output, that helps avoid creating something from nothing). The process of feeding the output into the input is called "tying the knot" in a fairly famous paper for Haskell. But it's harder to do in Clojure because it's an eager language (and even lazy sequences aren't "lazy enough") - the only solution I could find was that mess with And maybe it could even be written as a map? [updated 2012-07-19 with more compact code] Related question with much better code in an answer at Tying the knot in Clojure: circular references without (explicit, ugly) mutation? (it's the same idea as jneira's answer). For completeness, here's the final version using
|
||||
|
|
|
Probably there is a way to remove the "for" duplication, but here is something that works for me:
|
|||
|
guys is this as simple as this or am i missing something .... of course the above program prints the required atring in reverse we can avoid that by using recursion or store it in a string to reverse it ... |
|||||
|
|