三角剖分文字


39

编写一个程序或函数,该程序或函数的字符串必须保证只能包含可打印的ASCII字符(空格除外),并且长度必须是正三角形(1、3、6、10、15,...)。

打印或返回相同的字符串,但使用空格将其成形为三角形。一些例子将最好地说明我的意思:

如果输入为,R则输出为

R

如果输入为,cat则输出为

 c
a t

如果输入为,monk3y则输出为

  m
 o n
k 3 y

如果输入为,meanIngfu1则输出为

   m
  e a
 n I n
g f u 1

如果输入为,^/\/|\/[]\则输出为

   ^
  / \
 / | \
/ [ ] \

如果输入是

Thisrunofcharactersismeanttohavealengththatcanbeexpressedasatriangularnumber.Diditwork?Youtellme,Ican'tcountverywell,ok?

那么输出将是

              T
             h i
            s r u
           n o f c
          h a r a c
         t e r s i s
        m e a n t t o
       h a v e a l e n
      g t h t h a t c a
     n b e e x p r e s s
    e d a s a t r i a n g
   u l a r n u m b e r . D
  i d i t w o r k ? Y o u t
 e l l m e , I c a n ' t c o
u n t v e r y w e l l , o k ?

基本上,在三角形长度的子字符串之间插入换行符,在所有字符之间添加空格,并且每行缩进以适合三角形的空格。

可选地允许使用单个尾随换行符和带有尾随空格的行,但是否则,您的输出应与这些示例完全匹配。三角形的最后一行不应包含前导空格。

以字节为单位的最短代码获胜。


字符串的长度可以有绝对最大值吗?
geokavel 2015年

@geokavel它适用于您的语言通常可以处理的任何长度的字符串。
加尔文的爱好2015年

11
这是一棵圣诞树,适合尚未摆放礼物的人。* / \ / | \ / | o \ / | o | \ / o | o | \ / || o | o \ / o ||| o | \ / o || o ||| \ / || o | || o | \ / | o |||| o || o \
蒂米2015年

Answers:


9

Pyth,22个字节

jua+L\ GjdHfTczsM._UzY

在线尝试:演示测试套件

说明:

jua+L\ GjdHfTczsM._UzY   implicit: z = input string
                   Uz    create the list [0, 1, ..., len(z)-1]
                 ._      all prefixes of this list: [[0], [0,1], [0,1,2], ...]
               sM        sum up each sublist: [0, 1, 3, 6, 10, ...]
             cz          split z at these indices
           fT            remove all the unnecessary empty strings
                         this gives us the list of strings of the triangle
 u                   Y   reduce this list, with the initial value G = []
   +L\ G                    prepend a space to each string in G
        jdH                 join the current string with spaces
  a                         and append it to G
j                        print each string on a separate line

12

Python,81个字节

def f(s,p=''):
 i=-int(len(2*s)**.5)
 if s:f(s[:i],p+' ');print p+' '.join(s[i:])

递归函数。从末尾开始s,切掉并打印字符。根据的长度计算字符数s。该函数设置为以递归调用的相反顺序打印,该调用在s为空时终止,然后解析备份行。每层前缀p都添加了额外的空间。

在Python 3中,if可以通过短路来完成,尽管这似乎不节省字符:

def f(s,p=''):i=-int(len(2*s)**.5);s and[f(s[:i],p+' '),print(p+' '.join(s[i:]))]

不平等链的同样长的替代方法:

def f(s,p=''):i=-int(len(2*s)**.5);''<s!=f(s[:i],p+' ')!=print(p+' '.join(s[i:]))

两者printfreturn None,这很难使用。


1
这很聪明。通过一次将字符串切掉一行,您仍然可以得到一个三角形长度的字符串来计算前导空格的数量。
xsot

6

视网膜108 102 94 87 82 64 63字节

感谢Sp3000使我继续采用原来的方法,该方法使字节数从108减少到82。

非常感谢Kobi,他找到了一种更为优雅的解决方案,使我在此之上又节省了19个字节。

S_`(?<=^(?<-1>.)*(?:(?<=\G(.)*).)+)
.
$0 
m+`^(?=( *)\S.*\n\1)
<space>

其中,<space>代表单个空格字符(否则将被SE剥离)。出于计数目的,每一行都放在一个单独的文件中,\n应替换为实际的换行符。为了方便起见,您可以从带有-s标志的单个文件中按原样运行代码。

在线尝试。

说明

好吧...像往常一样,我无法在此处全面介绍平衡组。有关入门的信息,请参见我的堆栈溢出答案

S_`(?<=^(?<-1>.)*(?:(?<=\G(.)*).)+)

第一阶段是S分割阶段,它将输入分成长度增加的行。该_指示块空应该从分裂(只影响结束,因为会有在最后一个位置匹配)被省略。正则表达式本身完全包含在环顾中,因此它不会与任何字符匹配,而只会与位置匹配。

这部分基于Kobi的解决方案,以及我发现的一些其他优点。请注意,lookbehinds在.NET中从右到左匹配,因此最好从下至上阅读以下说明。\G为了清楚起见,我还在解释中插入了另一个,尽管对于该模式而言这不是必需的。

(?<=
  ^         # And we ensure that we can reach the beginning of the stack by doing so.
            # The first time this is possible will be exactly when tri(m-1) == tri(n-1),
            # i.e. when m == n. Exactly what we want!
  (?<-1>.)* # Now we keep matching individual characters while popping from group <1>.
  \G        # We've now matched m characters, while pushing i-1 captures for each i
            # between 1 and m, inclusive. That is, group <1> contains tri(m-1) captures.
  (?:       
    (?<=
      \G    # The \G anchor matches at the position of the last match.
      (.)*  # ...push one capture onto group <1> for each character between here
            # here and the last match.
    )       # Then we use a lookahead to...
    .       # In each iteration we match a single character.
  )+        # This group matches all the characters up to the last match (or the beginning
            # of the string). Call that number m.
)           # If the previous match was at position tri(n-1) then we want this match
            # to happen exactly n characters later.

我仍然很欣赏Kobi在这里的工作。这比主要的测试正则表达式更为优雅。:)

让我们继续下一个阶段:

.
$0 

简单:在每个非换行符之后插入一个空格。

m+`^(?=( *)\S.*\n\1)
<space>

最后一步使所有线正确缩进以形成三角形。这m只是使多行^匹配的常用多行模式。该+告诉视网膜重复这一阶段,直到串停止变化(在这种情况下,意味着正则表达式不再匹配)。

^      # Match the beginning of a line.
(?=    # A lookahead which checks if the matched line needs another space.
  ( *) # Capture the indent on the current line.
  \S   # Match a non-space character to ensure we've got the entire indent.
  .*\n # Match the remainder of the line, as well as the linefeed.
  \1   # Check that the next line has at least the same indent as this one.
)

因此,它与缩进不比下一行大的任何行的开头匹配。在任何这样的位置,我们都插入一个空格。一旦将行排列成整齐的三角形,此过程就会终止,因为这是最小的布局,其中每行的缩进都大于下一行。



@ n̴̖̋h̷͉̃a̷̭̿h̸̡̅ẗ̵̨́d̷̰̀ĥ̷̳现在,Kobi提供了更多100%的惊奇。
马丁·恩德

6

糖果67 59 57字节

&iZ1-=yZ1+Z*2/>{0g}0=z@1i&{|.}bYR(" ";=)ZR(=a&{;}" ";)"\n";Y1-=ya1j

&1-8*1+r1-2/=y@1i&{|.}bYR(" ";=)ZR(=a&{;}" ";)"\n";Y1-=ya1j

&8*7-r1-2/=y@1i&{|.}bYR(" ";=)ZR(=a&{;}" ";)"\n";Y1-=ya1j

要么:

          &
         8 *
        7 - r
       1 - 2 /
      = y @ 1 i
     & { | . } b
    Y R ( "   " ;
   = ) Z R ( = a &
  { ; } "   " ; ) "
 \ n " ; Y 1 - = y a
1 j

长表:

stackSz
digit8    # Y = (sqrt((numCh - 1) * 8 + 1) - 1) / 2   using pythagorean
mult      # Y = (sqrt(numCh * 8 - 7) - 1) / 2  equivalent but shorter
digit7
sub
root
digit1
sub
digit2
div
popA
YGetsA
label digit1
incrZ
stackSz   # bail if we're out of letters
if
  else
  retSub
endif
stack2
pushY     # print the leading spaces (" " x Y)
range1
while
  " " printChr
  popA
endwhile
pushZ
range1      # output this row of characters (Z of them)
while
  popA
  stack1
  stackSz
  if
    printChr    # bail on unbalanced tree
  endif
  " " printChr
endwhile
"\n" printChr
pushY
digit1
sub
popA
YGetsA
stack1
digit1 jumpSub   # loop using recursion

是的,我觉得圣诞节。
戴尔·约翰逊

5

CJam,27 26字节

感谢Sp3000节省1个字节。

Lq{' @f+_,)@/(S*N+a@\+\s}h

出乎意料的是,它靠近佩斯(Pyth),让我们看看它是否可以打高尔夫球...

在这里测试。

说明

L        e# Push an empty array to build up the lines in.
q        e# Read input.
{        e# While the top of the stack is truthy (non-empty)...
  ' @f+  e#   Prepend a space to each line we already have.
  _,)    e#   Get the number of lines we already have and increment.
  @/     e#   Split the input into chunks of that size.
  (S*    e#   Pull off the first chunk (the next line) and join with spaces.
  N+     e#   Append a linefeed.
  a@\+   e#   Append it to our list of lines.
  \s     e#   Pull up the other chunks of the input and join them back into one string.
}h

如果更改' S???,为什么它不起作用?
geokavel

@geokavel因为S是字符串而不是字符,所以f将映射在该字符串而不是行列表上。
马丁·恩德

那是我的猜测。您对使S成为字符串的原理有任何想法吗?
geokavel

@geokavel不,我不知道。
马丁·恩德

5

Ruby,84 77 73字节

->v{1.upto(n=v.size**0.5*1.4){|i|puts" "*(n-i)+v[i*(i-1)/2,i].chars*" "}}

77字节

->v{0.upto(n=(v.size*2)**0.5-1){|i|puts" "*(n-i)+v[i*(i+1)/2,i+1].chars*" "}}

r按照steveverrill的建议,通过删除变量减少了更多的字节。

84字节

->v{n=(v.size*2)**0.5-1;0.upto(n){|i|puts" "*(n-i)+v[(r=i*(i+1)/2)..r+i].chars*" "}}

取消高尔夫:

->v {
  1.upto(n=v.size**0.5*1.4) { |i|
    puts" "*(n-i)+v[i*(i-1)/2,i].chars*" "
  }
}

首先根据输入字符串计算三角数

n=v.size**0.5*1.4

例如,输入字符串的大小为120,而我们的三角数n为15。

puts" "*(n-i)+v[i*(i-1)/2,i].chars*" "

在上面的行中,它打印空格,然后是一系列字符串,这些字符串使用以下模式从输入字符串中提取

[[0,0],[1,2],[3,5],[6,9]]

用法:

f=->v{1.upto(n=v.size**0.5*1.4){|i|puts" "*(n-i)+v[i*(i-1)/2,i].chars*" "}}
f["Thisrunofcharactersismeanttohavealengththatcanbeexpressesasatriangularnumber.Diditwork?Youtellme,Ican'tcountverywell,ok?"]
              T
             h i
            s r u
           n o f c
          h a r a c
         t e r s i s
        m e a n t t o
       h a v e a l e n
      g t h t h a t c a
     n b e e x p r e s s
    e s a s a t r i a n g
   u l a r n u m b e r . D
  i d i t w o r k ? Y o u t
 e l l m e , I c a n ' t c o
u n t v e r y w e l l , o k ?

哇,我们的方法非常相似,但是我们似乎拥有互补的高尔夫知识。我不知道upto不需要整数参数((times当然肯定是这样)。)我将您的某些语法合并到了答案的修订版中。我为您提供的最大提示是,您不需要该变量r。只需使用a ,代替, ..并且逗号后面的数字是要返回的元素总数,而不是范围的末尾。
级圣河

真正。感谢您的提示,我立即更新了我的答案:)
Vasu Adari

4

Pyth,27个字节

Js.IsSGlzWz+*-J=hZdjd<~>zZZ

                               z = input()
                               Z = 0
                               d = ' '
    sSG                        G -> tri(G)
  .I   lz                      Find the (float) input whose output is len(z).
 s                             Convert to int.
J                              Save as J.
         Wz                    while z:
               =hZ             Z += 1
            *-J  Zd            Generate J-Z spaces.
                      ~>zZ     Remove the first Z characters from z.
                     <    Z    Generate those first Z characters.
                   jd          Join on spaces.
           +                   Add the two together and print.

测试套件

一种有趣的方法-势在必行,并使用.I。大概是高尔夫。


4

C,138个 136 134字节

将字符串作为输入:

j,r,k,a;f(char*s){j=strlen(s);r=k=sqrt(1+8*j)/2;for(;r--;printf("\n")){for(j=r;j--;)printf(" ");for(j=k-r;j--;)printf("%c ",s[a++]);}}

到目前为止,您似乎已经用C击败了JavaScript了1个字节:D
Mark K Cowan

@MarkKCowan是的,显然。我希望我做得更小!:)
Sahil Arora 2015年

@SahilArora -可以更换printf(" "),并printf("\n")puts(" ")puts("\n")。每次替换将为您节省2个字节。:)
enhzflep

@enhzflep我已经尝试过了,它给出了一个模棱两可的输出!
Sahil Arora 2015年

哦。:(正常工作在这里用gcc 4.7.1 WIN7 -我想这是与该printf的输出刷新到标准输出的方式做+1殴打的Javascript。
enhzflep

4

Ruby方法2修订版1,76字节

->s{s=s.chars*' '
0.upto(w=s.size**0.5-1){|i|puts' '*(w-i)+s[i*i+i,i*2+2]}}

使用Vasu Adari的答案中的语法思想进行了优化,加上我自己的一些转折。

Ruby方法2修订0,93个字节

->s{s=s.chars.to_a.join(' ')
w=(s.size**0.5).to_i
w.times{|i|puts' '*(w-i-1)+s[i*i+i,i*2+2]}}

完全不同的方法。首先,我们在输入字符之间添加空格。然后我们逐行打印出行。

Ruby方法1,94个字节

->s{n=-1;w=((s.size*2)**0.5).to_i
(w*w).times{|i|print i/w+i%w<w-1?'':s[n+=1],-i%w==1?$/:' '}}

最后的结果比预期的要长得多。

w 包含底部行中的可打印字符数,或等效地,行数。

每行都包含w空格字符(最后一行是换行符),因此想法是打印这些空格字符并在必要时插入可打印字符。


3

Minkolang 0.14,42字节

(xid2;$I2*`,)1-[i1+[" "o]lrx" "$ii-1-D$O].

在这里尝试。

说明

(                Open while loop
 x               Dump top of stack
  i              Loop counter (i)
   d2;           Duplicate and square
      $I2*       Length of input times two
          `,     Push (i^2) <= (length of input)
            )    Close for loop; pop top of stack and exit when it's 0

1-[                              Open for loop that repeats sqrt(len(input))-1 times
   i1+[                          Open for loop that repeats (loop counter + 1) times
       " "o                      Push a space then read in character from input
           ]                     Close for loop
            l                    Push 10 (newline)
             r                   Reverse stack
              x                  Dump top of stack
               " "               Push a space
                  $i             Push the max iterations of for loop
                    i-           Subtract loop counter
                      1-         Subtract 1
                        D        Pop n and duplicate top of stack n times
                         $O      Output whole stack as characters
                           ].    Close for loop and stop.

2
如此完美的字节数!做得好!
TanMath

1
@TanMath但42不是三角形数字!
圣保罗Ebermann

3

Python 2,88 85字节

s=t=raw_input()
i=1
while s:print' '*int(len(t*2)**.5-i)+' '.join(s[:i]);s=s[i:];i+=1

感谢xnor节省了3个字节。


缩短s时间不会弄乱空间数量的计算吗?
xnor 2015年

啊对。我在提交之前删除了一个临时变量,但没有意识到它会使代码无效。
xsot

如果您以前喜欢但保存了备份S=s=raw_input()怎么办?
xnor 2015年

好建议。我认为总体策略可能会更短一些。
xsot

划掉88个看起来很有趣
pinkfloydx33

3

CJam,50字节

q:QQ,1>{,{),:+}%:RQ,#:IR2ew<{~Q<>:LS*L,I+(Se[N}%}&

在这里尝试。

说明

q:QQ,1>{  e# Only proceed if string length > 1, otherwise just print.
,{),:}%:R e# Generates a list of sums from 0 to k, where k goes from 0 to the length of the string [0,1,3,6,10,15,21,...]
Q,#:I     e# Find the index of the length of the string in the list
R2ew<     e# Make a list that looks like [[0,1],[1,3],[3,6],...,[?,n] ]where n is the length of the string 
{~Q<>:L   e# Use that list to get substrings of the string using the pairs as start and end indices
S*        e# Put spaces between the substrings
L,I+(Se[N e# (Length of the substring + Index of string length in sum array -1) is the length the line should be padded with spaces to. Add a new line at the end.
%}& 

2

JavaScript(ES6),135个字节

w=>{r='';for(s=j=0;j<w.length;j+=s++);for(i=j=0;w[j+i];j+=++i)r+=Array(s-i-1).join` `+w.slice(j,i+j+1).split``.join` `+'<br>';return r}

高尔夫+演示:

function t(w) {
    r = '';
    for (s = j = 0; j < w.length; j += s++);
    for (i = j = 0; w[j + i]; j += ++i) r += Array(s - i - 1).join` ` + w.slice(j, i + j + 1).split``.join` ` + '<br>';
    return r;
}

document.write('<pre>' + t(prompt()));


目的是for (s = j = 0; j < w.length; j += s++);什么?另外,<pre>您可以在中使用\n代替<br>。另外,您忘了提到它是ES6。
Ismael Miguel

第一个循环的目标是计算最后一行的长度,以便正确缩进每行。
nicael 2015年

2

Java中,258 194

打高尔夫球:

String f(String a){String r="";int t=(((int)Math.sqrt(8*a.length()+1))-1)/2-1;int i=0,n=0;while(n++<=t){for(int s=-1;s<t-n;++s)r+=" ";for(int j=0;j<n;++j)r+=a.charAt(i++)+" ";r+="\n";}return r;}

取消高尔夫:

public class TriangulatingText {

  public static void main(String[] a) {
    // @formatter:off
    String[] testData = new String[] {
      "R",
      "cat",
      "monk3y",
      "meanIngfu1",
      "^/\\/|\\/[]\\",
      "Thisrunofcharactersismeanttohavealengththatcanbeexpressedasatriangularnumber.Diditwork?Youtellme,Ican'tcountverywell,ok?",
    };
    // @formatter:on

    for (String data : testData) {
      System.out.println("f(\"" + data + "\")");
      System.out.println(new TriangulatingText().f(data));
    }
  }

  // Begin golf
  String f(String a) {
    String r = "";
    int t = (((int) Math.sqrt(8 * a.length() + 1)) - 1) / 2 - 1;
    int i = 0, n = 0;
    while (n++ <= t) {
      for (int s = -1; s < t - n; ++s)
        r += " ";
      for (int j = 0; j < n; ++j)
        r += a.charAt(i++) + " ";
      r += "\n";
    }
    return r;
  }
  // End golf
}

程序输出:

f("R")
R 

f("cat")
 c 
a t 

f("monk3y")
  m 
 o n 
k 3 y 

f("meanIngfu1")
   m 
  e a 
 n I n 
g f u 1 

f("^/\/|\/[]\")
   ^ 
  / \ 
 / | \ 
/ [ ] \ 

f("Thisrunofcharactersismeanttohavealengththatcanbeexpressedasatriangularnumber.Diditwork?Youtellme,Ican'tcountverywell,ok?")
              T 
             h i 
            s r u 
           n o f c 
          h a r a c 
         t e r s i s 
        m e a n t t o 
       h a v e a l e n 
      g t h t h a t c a 
     n b e e x p r e s s 
    e d a s a t r i a n g 
   u l a r n u m b e r . D 
  i d i t w o r k ? Y o u t 
 e l l m e , I c a n ' t c o 
u n t v e r y w e l l , o k ? 

您可能可以静态导入System.out以节省一些字节。
RAnders00 2015年

import static System.out;是25个字节,System.是7个字节。它使用了3次,且21 <25,因此实际上会将大小增加 4个字节。但是,好的线索可以节省空间,而且并不是每个人都知道它们。

1
当我找到一个答案时,我正在经历一个古老的答案:“编写程序或函数 ”,这是我最初没有意识到的。删除类内容可以节省空间。我将其设置为适当的功能,然后发现需要剃除的更多字节。

1

JavaScript(ES6),106个字节

a=>(y=z=0,(f=p=>p?" ".repeat(--p)+a.split``.slice(y,y+=++z).join` `+`
`+f(p):"")(Math.sqrt(2*a.length)|0))

使用递归而不是for循环来构建字符串。

为了找到最长行的长度,则使用公式第n三角形数T_nT_n = (n^2 + n)/2。给定nT_n使用二次方程式求解,我们有:

1/2 * n^2 + 1/2 * n - T_n = 0

a = 1/2, b = 1/2, c = -T_n

-1/2 + sqrt(1/2^2 - 4*1/2*-T_n)   
------------------------------- = sqrt(1/4 + 2*T_n) - 1/2
             2*1/2

事实证明,铺地板后,在平方根内添加1/4不会改变结果,因此最长行的公式为Math.sqrt(2*a.length)|0



1

Powershell,69个字节

($args|% t*y|?{$r+="$_ ";++$p-gt$l}|%{$r;rv r,p;$l++})|%{' '*--$l+$_}

少打高尔夫的测试脚本:

$f = {

(
    $args|% t*y|?{  # test predicate for each char in a argument string 
        $r+="$_ "   # add current char to the result string
        ++$p-gt$l   # return predicate value: current char posision is greater then line num
    }|%{            # if predicate is True
        $r          # push the result string to a pipe
        rv r,p      # Remove-Variable r,p. This variables will be undefined after it.
        $l++        # increment line number
    }

)|%{                # new loop after processing all characters and calculating $l
    ' '*--$l+$_     # add spaces to the start of lines
}                   # and push a result to a pipe

}

@(
    ,("R",
    "R ")

    ,("cat",
    " c ",
    "a t ")

    ,("monk3y",
    "  m ",
    " o n ",
    "k 3 y ")

    ,("meanIngfu1",
    "   m ",
    "  e a ",
    " n I n ",
    "g f u 1 ")

    ,("^/\/|\/[]\",
    "   ^ ",
    "  / \ ",
    " / | \ ",
    "/ [ ] \ ")

    ,("Thisrunofcharactersismeanttohavealengththatcanbeexpressedasatriangularnumber.Diditwork?Youtellme,Ican'tcountverywell,ok?",
    "              T ",
    "             h i ",
    "            s r u ",
    "           n o f c ",
    "          h a r a c ",
    "         t e r s i s ",
    "        m e a n t t o ",
    "       h a v e a l e n ",
    "      g t h t h a t c a ",
    "     n b e e x p r e s s ",
    "    e d a s a t r i a n g ",
    "   u l a r n u m b e r . D ",
    "  i d i t w o r k ? Y o u t ",
    " e l l m e , I c a n ' t c o ",
    "u n t v e r y w e l l , o k ? ")

    ,("*/\/|\/|o\/|o|\/o|o|\/||o|o\/o|||o|\/o||o|||\/||o|||o|\/|o|||o||o\",
    "          * ",
    "         / \ ",
    "        / | \ ",
    "       / | o \ ",
    "      / | o | \ ",
    "     / o | o | \ ",
    "    / | | o | o \ ",
    "   / o | | | o | \ ",
    "  / o | | o | | | \ ",
    " / | | o | | | o | \ ",
    "/ | o | | | o | | o \ ")

) | % {
    $s,$expected = $_
    $result = &$f $s
    "$result"-eq"$expected"
    $result
}

输出:

True
R
True
 c
a t
True
  m
 o n
k 3 y
True
   m
  e a
 n I n
g f u 1
True
   ^
  / \
 / | \
/ [ ] \
True
              T
             h i
            s r u
           n o f c
          h a r a c
         t e r s i s
        m e a n t t o
       h a v e a l e n
      g t h t h a t c a
     n b e e x p r e s s
    e d a s a t r i a n g
   u l a r n u m b e r . D
  i d i t w o r k ? Y o u t
 e l l m e , I c a n ' t c o
u n t v e r y w e l l , o k ?
True
          *
         / \
        / | \
       / | o \
      / | o | \
     / o | o | \
    / | | o | o \
   / o | | | o | \
  / o | | o | | | \
 / | | o | | | o | \
/ | o | | | o | | o \

0

C#,202

string r(string s,List<string> o,int i=1){o=o.Select(p=>" "+p).ToList();o.Add(String.Join(" ",s.Substring(0,i).ToCharArray()));return s.Length==i?String.Join("\n",o):r(s.Substring(i,s.Length-i),o,i+1);}

我不知道这在代码高尔夫球中是否合法,但是在函数中传递列表是否有效?如果没有在函数外部声明List <string>,我找不到一种递归的方法,因此我将其作为参数。

用法:

 r("1",new List<string>());
 r("123", new List<string>());
 r("123456", new List<string>());
 r("Thisrunofcharactersismeanttohavealengththatcanbeexpressedasatriangularnumber.Diditwork?Youtellme,Icanstcountverywell,ok?",new List<string>());

0

C,102字节

i,j;main(n,s){for(n=sqrt(strlen(gets(s))*2);j<n;printf("%*.1s",i>1?2:i*(n-j),i++>j?i=!++j,"\n":s++));}

0

Bash + sed,87

for((;i<${#1};i+=j));{
a+=(${1:i:++j})
}
printf %${j}s\\n ${a[@]}|sed 's/\S/ &/g;s/.//'

0

R,142字节

可以肯定的是,我可以把它付诸实践。仍在努力。我感觉好像缺少一个简单的递归-但是我无法正确缩短它。

f=function(a){n=nchar(a);l=which(cumsum(1:n)==n);w=strsplit(a,c())[[1]];for(i in 1:l){cat(rep(" ",l-i),sep="");cat(w[1:i],"\n");w=w[-(1:i)]}}

不打高尔夫球

f=function(a){
    n = nchar(a)                 #number of characters
    l= which(cumsum(1:n)==n)     #which triangle number
    w= strsplit(a,c())[[1]]      #Splits string into vector of characters
    for (i in 1:l) {
        cat(rep(" ",l-i),sep="") #preceeding spaces
        cat(w[1:i],"\n")         #Letters
        w=w[-(1:i)]              #Shifts removes letters (simplifies indexing)
    }
}

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.