Talk:Align columns

From Rosetta Code
Revision as of 23:32, 2 December 2008 by rosettacode>DanBron (→‎J solution: solution contains no column count)

J solution

I haven't read the J solution in depth yet, but it appears more complex than may be necessary. For example, with 'LEFT CENTER RIGHT'=:i.3 we can solve the task thus:

   _2 {:\ ": <;._2@:,~&>/'$';LF;text [ 9!:17 ,~ CENTER [ 9!:7 ' '$~11
   Given        a         text     file    of     many      lines,    where   fields  within    a    line  
    are     delineated     by       a    single 'dollar'  character,  write      a    program              
    that      aligns      each    column   of    fields       by     ensuring  that    words    in   each  
   column      are     separated    by     at     least      one      space.                               
  Further,    allow       for      each   word     in         a       column    to      be    either left  
 justified,   right    justified,   or   center justified   within     its    column.                      
                                                                                                           

Replacing CENTER with LEFT or RIGHT to taste.

Now, of course, the justification selected applies to every word. If we want to be able to treat each word (or column) independently, there are other methods. Even for this more general specification, I'm still not convinced that the large explicit verb is required, but I'll have to review it in detail to confirm.

I concur that your solution is adequate to the specified task. It should replace the one I posted. I wrote mine without knowing about 9!:y. Thank you for this more skillful solution, Dan. --TBH 22:58, 1 December 2008 (UTC)
I've just noticed that the code proposed above does not compensate for the inconsistent input data, which lacks the delimiter at the end of some lines. (It does not seem right to me to have the example text have such an irregularity when nothing about the task suggests that data-quality testing is relevant, but, that's what we've been given.) --TBH 00:28, 2 December 2008 (UTC)
I have added a note to clarify that this aspect of the data is intentional. --Paddy3118 03:52, 2 December 2008 (UTC)
Fixed. --DanBron 12:38, 2 December 2008 (UTC)
The new solution has the column count hardcoded into it. I suspect that the task is intended to work such that the tally of columns is derived from the text, not provided by the user as part of the input. --TBH 22:34, 2 December 2008 (UTC)
Where is the column count hardcoded? AFAIK, the number of columns wholly determined by the (maximum) number of $s in a line. To be more explicit, the numeric constants are, from left to right:
Constant Description
_2 {:\ ": Non-overlapping (-) pairs (2) of rows of the formatted data.
<;._2... Split the input, treating the last (2) item as the fret, and exclude (-) the frets.
9!:17 Foreign family controlling parameters (9), specifically controlling alignment (17).
... ,~ CENTER ... Parameter specifying centered alignment. (A prior version had CENTER #~2, which is the same, but one word longer)
9!:7 Foreign family controlling parameters (9), specifically controlling linedrawing characters (7).
' '$~11 Parameter specifying linedrawing characters (all 11 linedrawing characters will be ' ').
--DanBron 23:32, 2 December 2008 (UTC)

Output Question

Given that the lines contain varying numbers of fields, when a justified line is output should the program
A) only output the justified fields that the line contains, or
B) output spaces for the columns when the line does not contain all the columns?

Hi, assume that the output should look good visually, and that lines will never be wrapped when displayed so trailing whitespace is irrelevant. --Paddy3118 03:39, 2 December 2008 (UTC)