bash brace展開を展開します


20

主に歴史的な理由から、bashは構文とプログラミングのパラダイムの寄せ集めです。これにより、ゴルフが厄介になり、時にはイライラすることがあります。言語。これらの1つはブレースの拡張です。

ブレースの展開には2つの基本的なタイプがあります。

  • リストの中括弧には、コンマで区切られた任意の文字列のリストを含めることができます(重複や空の文字列を含む)。たとえば、{a,b,c,,pp,cg,pp,}展開されますa b c pp cg pp(空の文字列の周りのスペースに注意してください)。
  • シーケンスブレースには、で区切られたシーケンスエンドポイントが含まれる場合があります..。必要に応じて..、次のステップサイズが続きます。シーケンスのエンドポイントは、整数または文字のいずれかです。シーケンスは、どちらのエンドポイントが大きいかによって自動的に上昇または下降します。例えば:
    • {0..15} に展開されます 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
    • {-10..-5} に展開されます -10 -9 -8 -7 -6 -5
    • {3..-6..2} に展開されます 3 1 -1 -3 -5
    • {a..f} に展開されます a b c d e f
    • {Z..P..3} に展開されます Z W T Q

さらに、シーケンスとリストの中括弧がリストの中括弧と共に存在する場合があります。

  • {a,b,{f..k},p} に展開されます a b f g h i j k p
  • {a,{b,c}} に展開されます a b c

中括弧は、その両側に空白以外の文字列で展開します。例えば:

  • c{a,o,ha,}t に展開されます cat cot chat ct

これは、連結された複数の中括弧に対しても機能します。

  • {ab,fg}{1..3} に展開されます ab1 ab2 ab3 fg1 fg2 fg3

これは非常に複雑になる可能性があります。例えば:

  • {A..C}{x,{ab,fg}{1..3},y,} に展開されます Ax Aab1 Aab2 Aab3 Afg1 Afg2 Afg3 Ay A Bx Bab1 Bab2 Bab3 Bfg1 Bfg2 Bfg3 By B Cx Cab1 Cab2 Cab3 Cfg1 Cfg2 Cfg3 Cy C

ただし、展開の間に空白がある場合、それらは単に別々の展開として展開します。例えば:

  • {a..c} {1..5} に展開されます a b c 1 2 3 4 5

順序が常に保持されることに注意してください。


このチャレンジのエントリは、上記のようにbash brace展開を展開します。特に:

  • eval by bash(または同様の展開を行う他のシェル)は許可されていません
  • シーケンス中括弧は常に、数字と数字、小文字と小文字、または大文字と大文字で、ミキシングされません。数値は、32ビットの符号付き範囲の整数になります。指定した場合、オプションのステップサイズは常に正の整数になります。 (bashも{A..z}同様に拡張することに注意してください。ただし、これはこのチャレンジでは無視される場合があります)
  • リスト中括弧内の個々の項目は、常に大文字と小文字の英数字のみで構成されます(空の文字列が含まれます)
  • リストの中括弧には、他の中括弧展開の任意の入れ子が含まれる場合があります
  • 中括弧は、任意の回数連結できます。これは言語のメモリによって制限されるため、理論上は任意の数の連結を行うことができますが、メモリ不足になった場合はカウントされません。

上記のテキストの例は、テストケースとして機能します。要約すると、入力の各行は出力の同じ行に対応しており、次のとおりです。

入力

{0..15}
{-10..-5}
{3..-6..2}
{a..f}
{Z..P..3}
{a,b,{f..k},p}
{a,{b,c}}
c{a,o,ha,}t
{ab,fg}{1..3}
{A..C}{x,{ab,fg}{1..3},y,}
{a..c} {1..5}
{a{0..100..10},200}r

出力

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
-10 -9 -8 -7 -6 -5
3 1 -1 -3 -5
a b c d e f
Z W T Q
a b f g h i j k p
a b c
cat cot chat ct
ab1 ab2 ab3 fg1 fg2 fg3
Ax Aab1 Aab2 Aab3 Afg1 Afg2 Afg3 Ay A Bx Bab1 Bab2 Bab3 Bfg1 Bfg2 Bfg3 By B Cx Cab1 Cab2 Cab3 Cfg1 Cfg2 Cfg3 Cy C
a b c 1 2 3 4 5
a0r a10r a20r a30r a40r a50r a60r a70r a80r a90r a100r 200r

3
私はこれを調べましたが、すべてのエッジケースのために単純に解析するのは苦痛です:
ニール

回答:


3

ルビー、405の 403 401 400バイト

賢者(ジェイミー・ザウィンスキー)はかつて、「問題に直面したとき、「わかっている、正規表現を使う」と思う人がいる」と言っていました。今、彼らには2つの問題があります。」

再帰正規表現でこの問題を解決しようとするまで、この引用を完全に評価したとは思いません。最初は、括弧に隣接する文字を含むエッジケースを処理する必要があるまで、正規表現のケースは単純に見えましたが、その後、私は地獄にいることがわかりました。

とにかく、ここでテストケースを使ってオンラインで実行してください

->s{s.gsub!(/{(-?\w+)..(-?\w+)(..(\d+))?}/){x,y=$1,$2;a,b,c=[x,y,$4].map &:to_i
$1[/\d/]?0:(a,b=x,y)
k=a<b ?[*a..b]:[*b..a].reverse
?{+0.step(k.size-1,$4?c:1).map{|i|k[i]}*?,+?}}
r=1
t=->x{x[0].gsub(/^{(.*)}$/){$1}.scan(/(({(\g<1>|,)*}|[^,{}]|(?<=,|^)(?=,|$))+)/).map{|i|i=i[0];i[?{]?r[i]:i}.flatten}
r=->x{i=x.scan(/({(\g<1>)*}|[^{} ]+)/).map(&t)
i.shift.product(*i).map &:join}
s.split.map(&r)*' '}

ゴルフをしていない:

->s{
  s.gsub!(/{(-?\w+)..(-?\w+)(..(\d+))?}/){  # Replace all range-type brackets {a..b..c}
    x,y=$1,$2;a,b,c=[x,y,$4].map &:to_i     # Set up int variables
    $1[/\d/]?0:(a,b=x,y)                    # Use int variables for a,b if they're numbers
    k=a<b ?[*a..b]:[*b..a].reverse          # Create an array for the range in the correct direction
    '{'+                                    # Return the next bit surrounded by brackets
      0.step(k.size-1,$4?c:1).map{|i|k[i]   # If c exists, use it as the step size for the array
      }*','                                 # Join with commas
      +'}'
  }
  r=1                                       # Dummy value to forward-declare the parse function `r`
  t=->x{                                    # Function to parse a bracket block
    x=x[0].gsub(/^{(.*)}$/){$1}             # Remove outer brackets if both are present
                                            # x[0] is required because of quirks in the `scan` function
    x=x.scan(/(({(\g<1>|,)*}|[^,{}]|(?<=,|^)(?=,|$))+)/)
                                            # Regex black magic: collect elements of outer bracket
    x.map{|i|i=i[0];i[?{]?r[i]:i}.flatten   # For each element with brackets, run parse function
  }
  r=->x{                                    # Function to parse bracket expansions a{b,c}{d,e}
    i=x.scan(/({(\g<1>)*}|[^{} ]+)/)        # Regex black magic: scan for adjacent sets of brackets
    i=i.map(&t)                             # Map all elements against the bracket parser function `t`
    i.shift.product(*i).map &:join          # Combine the adjacent sets with cartesian product and join them together
  }
  s.split.map(&r)*' '                       # Split on whitespace, parse each bracket collection
                                            #   and re-join with spaces
}

2

Python 2.7、752 728バイト

うわー、これは1回の挑戦でたくさんのコードゴルフのようです!

ラムダを短縮してくれた@Neilに感謝

def b(s,o,p):
 t,f=s>':'and(ord,chr)or(int,str);s,o=t(s),t(o);d=cmp(o,s)
 return list(map(f,range(s,o+d,int(p)*d)))
def e(s):
 c=1;i=d=0
 while c:d+=-~'{}}'.count(s[i])%3-1;i+=1;c=i<len(s)and 0<d
 return i
def m(s):
 if len(s)<1:return[]
 if','==s[-1]:return m(s[:-1])+['']
 i=0
 while i<len(s)and','!=s[i]:i+=e(s[i:])
 return[s[:i]]+m(s[i+1:])
n=lambda a,b:[c+d for c in a for d in b]or a or b
def p(s):
 h=s.count
 if h('{')<1:return[s]
 f,l=s.index('{'),e(s)
 if h('{')<2and h('..')>0and f<1:s=s[1:-1].split('..');return b(s[0],s[1],s[2])if len(s)>2 else b(s[0],s[1],1)
 if f>0 or l<len(s):return n(p(s[:f]),n(p(s[f:l]),p(s[l:])))
 return sum(map(list,map(p,m(s[1:-1]))),[])
o=lambda s:' '.join(p('{'+s.replace(' ',',')+'}'))

説明

  • b:仕様に従って範囲を計算します。
  • e:最初の最も近い閉じ中括弧の位置を返します。反復的。
  • m:最も外側の要素をコンマで分割します。再帰的。
  • n:空をチェックしながら配列を結合します。仕事ができませんでしand/orた。
  • p:ほとんどの作業が行われる場所。すべてのケースをチェックします(範囲、リストのみ、結合する必要があります)。再帰的。
  • o:何を入力する必要があります。入力/出力をにフォーマットしますp

どこかで改善できると思うので、もっとゴルフをしようと思います。また、私は説明でより詳細に入れる必要があります。


私は[c+d for c in a for d in b] or a or b働くと期待していたでしょう。
ニール

2

JavaScript(Firefox 30-57)、465 427 425バイト

f=s=>/\{/.test(s)?f(s.replace(/([^,{}]*\{[^{}]*\})+[^,{}]*/,t=>t.split(/[{}]+/).map(u=>u.split`,`).reduce((a,b)=>[for(c of a)for(d of b)c+d]))):s.split`,`.join` `
s=>f(`{${s.split` `}}`.replace(/\{(-?\w+)\.\.(-?\w+)(\.\.(\d+))?\}/g,(m,a,o,_,e)=>{m=(a>'@')+(a>'_');a=parseInt(a,m?36:10);o=parseInt(o,m?36:10);e=+e||1;if(o<a)e=-e;for(r=[];e<0?o<=a:a<=o;a+=e)r.push(m?a.toString(36):a);r=`{${r}}`;return m-1?r:r.toUpperCase()}))

ES6バージョンのf重量は10バイト余分です。

f=s=>/\{/.test(s)?f(s.replace(/([^,{}]*\{[^{}]*\})+[^,{}]*/,t=>t.split(/[{}]+/).map(u=>u.split`,`).reduce((a,b)=>[].concat(...a.map(c=>b.map(d=>c+d)))))):s.split`,`.join` `
g=s=>f(`{${s.split` `}}`.replace(/\{(-?\w+)\.\.(-?\w+)(\.\.(\d+))?\}/g,(m,a,o,_,e)=>{m=(a>'@')+(a>'_');a=parseInt(a,m?36:10);o=parseInt(o,m?36:10);e=+e||1;if(o<a)e=-e;for(r=[];e<0?o<=a:a<=o;a+=e)r.push(m?a.toString(36):a);r=`{${r}}`;return m-1?r:r.toUpperCase()}))
h=(s,t=s.replace(/\{[^{}]*\}/,""))=>s!=t?h(t):!/[{}]/.test(s)
<input oninput="o.textContent=h(this.value)?g(this.value):'{Invalid}'"><div id=o>

説明:{}一貫性のためにスペースをコンマに変更し、文字列全体をラップすることから始めます(アイデアについては@Blueに感謝します)。次に、すべての{..}構造を検索し、それらを{,}構造に展開します。次に、再帰を使用{,}して、すべての構成要素を内側から外側に繰り返し展開します。最後に、すべてのコンマをスペースに置き換えます。

f=s=>/\{/.test(s)?                  while there are still {}s
 f(s.replace(                       recursive replacement
  /([^,{}]*\{[^{}]*\})+[^,{}]*/,    match the deepest group of {}s
  t=>t.match(/[^{}]+/g              split into {} terms and/or barewords
   ).map(u=>u.split`,`              turn each term into an array
   ).reduce((a,b)=>                 loop over all the arrays
    [for(c of a)for(d of b)c+d]))   cartesian product
  ):s.split`,`.join` `              finally replace commas with spaces
s=>f(                               change spaces into commas and wrap
 `{${s.split` `}}`.replace(         match all {..} seqences
   /\{([-\w]+)\.\.([-\w]+)(\.\.(\d+))?\}/g,(m,a,o,_,e)=>{
    m=(a>'@')+(a>'_');              sequence type 0=int 1=A-Z 2=a-z
    a=parseInt(a,m?36:10);          convert start to number
    o=parseInt(o,m?36:10);          convert stop to number
    e=+e||1;                        convert step to number (default 1)
    if(o<a)e=-e;                    check if stepping back
    for(r=[];e<0?o<=a:a<=o;a+=e)    loop over each value
     r.push(m?a.toString(36):a);    convert back to string
    r=`{${r}}`;                     join together and wrap in {}
    return m-1?r:r.toUpperCase()})) convert type 1 back to upper case
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.