バイナリツリーの最も深いノードを見つける


9

バイナリツリーを入力として受け取り、最も深いノードとその深さを出力するプログラムを記述します。同点の場合は、関連するすべてのノードとその深さを出力します。各ノードは次のように表されます。

T(x,x)

T(x)

T

ここTで、は1つ以上の英数字の識別子であり、それぞれxが別のノードです。

バイナリツリーの簡単な定義を次に示します。

  • バイナリツリーの先頭にはノードがあります。
  • バイナリツリーのノードには、最大で2つの子があります。

たとえば、入力A(B(C,D(E)))(以下)はを出力します3:E

木1

次のツリーは5、11、4の間の3方向のつながりであり、その深さも3(0から開始)です。

入力2(7(2,6(5,11)),5(9(4)))(下記)はを出力します3:5,11,4

ツリー2

これはコードゴルフなので、バイト単位で測定された最も短いコードが優先されます。


@ close-voter:あなたは何について不明確ですか?
Jwosty、2014年

3
おそらく、入力または出力の仕様がない、またはそれらの入力と出力のテストケースがないという事実です。
ドアノブ

それを修正しようとしていますが、私の電話はうまくいきません...:Pですが、
Jwosty、2014年

3
最初のツリーをA(B(C、D(E))にすべきではありませんか?
bakerg 2014年

1
@bakerg正解、私の間違い。修繕。
Jwosty、2014年

回答:


6

CJam、49 47

0q')/{'(/):U;,+:TW>{T:W];}*TW={U]',*}*T(}/;W':@

 

0                 " Push 0 ";
q                 " Read the whole input ";
')/               " Split the input by ')' ";
{                 " For each item ";
  '(/             " Split by '(' ";
  )               " Extract the last item of the array ";
  :U;             " Assign the result to U, and discard it ";
  ,               " Get the array length ";
  +               " Add the top two items of the stack, which are the array length and the number initialized to 0 ";
  :T              " Assign the result to T ";
  W>{             " If T>W, while W is always initialized to -1 ";
    T:W];         " Set T to W, and empty the stack ";
  }*
  TW={            " If T==W ";
    U]',*         " Push U and add a ',' between everything in the stack, if there were more than one ";
  }*
  T(              " Push T and decrease by one ";
}/
;                 " Discard the top item, which should be now -1 ";
W                 " Push W ";
':                " Push ':' ";
@                 " Rotate the 3rd item to the top ";

出力形式を少し変更して、一貫性を持たせ、あいまいさを少なくしましたが、それほど不便ではありません。
Jwosty、2014年

@Jwostyコードゴルフでない場合、それはすべきではありません。
jimmy23013 14年

さて、これコードゴルフです...しかし、とにかく素敵な提出:)
Jwosty

これがどのように機能するか説明できますか?
ジェリージェレミア2014年

@JerryJeremiah編集。
jimmy23013 14年

5

Haskell、186バイト

p@(n,s)%(c:z)=maybe((n,s++[c])%z)(\i->p:(n+i,"")%z)$lookup c$zip"),("[-1..1];p%_=[p]
(n,w)&(i,s)|i>n=(i,show i++':':s)|i==n=(n,w++',':s);p&_=p
main=interact$snd.foldl(&)(0,"").((0,"")%)

完全なプログラムは、ツリーをに取りstdin、以下に指定された出力フォーマットを生成しますstdout

& echo '2(7(2,6(5,11)),5(9(4)))' | runhaskell 32557-Deepest.hs 
3:5,11,4

& echo 'A(B(C,D(E)))' | runhaskell 32557-Deepest.hs 
3:E

ゴルフ用のコードへのガイド(より適切な名前、型のシグネチャ、コメント、およびいくつかの部分式が追加され、名前が付けられていますが、それ以外は同じコードです。ゴルフされていないバージョンでは、ノードへの分割が番号付けと混同されることはなく、最も深い検索も行われません。出力フォーマットあり。)

type Label = String         -- the label on a node
type Node = (Int, Label)    -- the depth of a node, and its label

-- | Break a string into nodes, counting the depth as we go
number :: Node -> String -> [Node]
number node@(n, label) (c:cs) =
    maybe addCharToNode startNewNode $ lookup c adjustTable
  where
    addCharToNode = number (n, label ++ [c]) cs
        -- ^ append current character onto label, and keep numbering rest

    startNewNode adjust = node : number (n + adjust, "") cs
        -- ^ return current node, and the number the rest, adjusting the depth

    adjustTable = zip "),(" [-1..1]
        -- ^ map characters that end node labels onto depth adjustments
        -- Equivalent to [ (')',-1), (',',0), ('(',1) ]

number node _ = [node]      -- default case when there is no more input

-- | Accumulate into the set of deepest nodes, building the formatted output
deepest :: (Int, String) -> Node -> (Int, String)
deepest (m, output) (n, label)
    | n > m     = (n, show n ++ ':' : label)    -- n is deeper tham what we have
    | n == m    = (m, output ++ ',' : label)    -- n is as deep, so add on label
deepest best _ = best                           -- otherwise, not as deep

main' :: IO ()
main' = interact $ getOutput . findDeepest . numberNodes
  where
    numberNodes :: String -> [Node]
    numberNodes = number (0, "")

    findDeepest :: [Node] -> (Int, String)
    findDeepest = foldl deepest (0, "")

    getOutput :: (Int, String) -> String
    getOutput = snd

1
そのコードは私を怖がらせます。
seequ

拡張された説明コードが追加されました!恐怖であなたをより強くさせましょう!!
MtnViewMark 2014年

あなたはそのための+1に値します。
seequ

ああ、神様、私はリストに苦労しています:P
Artur Trapp

4

GolfScript(75文字)

特に競争力はありませんが、十分にねじれているため、いくつかの関心事があります。

{.48<{"'^"\39}*}%','-)](+0.{;.@.@>-\}:^;@:Z~{2$2$={@@.}*;}:^;Z~\-])':'@','*

コードには3つのフェーズがあります。まず、入力文字列を前処理します。

# In regex terms, this is s/([ -\/])/'^\1'/g
{.48<{"'^"\39}*}%
# Remove all commas
','-
# Rotate the ' which was added after the closing ) to the start
)](+

たとえばA(B(C,D(E)))に変換しました'A'^('B'^('C'^'D'^('E'^)''^)''^)。適切なブロックを割り当てると、文字列を評価するために^を使用~して、便利な処理を実行できます。

次に、最大深度を見つけます。

0.
# The block we assign to ^ assumes that the stack is
#   max-depth current-depth string
# It discards the string and updates max-depth
{;.@.@>-\}:^;
@:Z~

最後に、最も深いノードを選択し、出力を作成します。

# The block we assign to ^ assumes that the stack is
#   max-depth current-depth string
# If max-depth == current-depth it pushes the string under them on the stack
# Otherwise it discards the string
{2$2$={@@.}*;}:^;
# Eval
Z~
# The stack now contains
#   value1 ... valuen max-depth 0
# Get a positive value for the depth, collect everything into an array, and pop the depth
\-])
# Final rearranging for the desired output
':'@','*

1

Perl 5〜85

文字数を修正するために、この投稿を自由に編集してください。私はsay機能を使用していますが、宣言せずに正しく動作させるためのフラグについては知りませんuse 5.010;

$_=$t=<>,$i=0;$t=$_,$i++while s/\w+(\((?R)(,(?R))?\))?/$1/g,/\w/;@x=$t=~/\w+/gs;say"$i:@x"

ideoneのデモ

出力は、コンマ区切りではなくスペース区切りです。

コードは、再帰的正規表現を使用して、フォレスト内のツリーのルートを削除できなくなります。次に、最後の前の文字列には、最も深いレベルのすべての葉ノードが含まれます。

サンプルの実行

2
0:2

2(3(4(5)),6(7))
3:5

2(7(2,6(5,11)),5(9(4)))
3:5 11 4

1(2(3(4,5),6(7,8)),9(10(11,12),13(14,15)))
3:4 5 7 8 11 12 14 15

1

VB.net

Function FindDeepest(t$) As String
  Dim f As New List(Of String)
  Dim m = 0
  Dim d = 0
  Dim x = ""
  For Each c In t
    Select Case c
      Case ","
        If d = m Then f.Add(x)
        x = ""
      Case "("
        d += 1
        If d > m Then f.Clear() :
        m = d
        x = ""
      Case ")"
        If d = m Then f.Add(x) : x = ""
        d -= 1
      Case Else
        x += c
    End Select
  Next
  Return m & ":" & String.Join(",", f)
End Function

アサンプション:ノード値を含めることはできません,()


1
これはゴルフのようには思えません。その空白のほとんどを削除できませんか(VBは知りません)。
seequ

空白の一部は重要です。
Adam Speight 2014年

1

JavaScript(E6)120

反復バージョン

m=d=0,n=[''];
prompt().split(/,|(\(|\))/).map(e=>e&&(e=='('?m<++d&&(n[m=d]=''):e==')'?d--:n[d]+=' '+e));
alert(m+':'+n[m])

ゴルフなしでテスト可能

F= a=> (
    m=d=0,n=[''],
    a.split(/,|(\(|\))/)
    .map(e=>e && (e=='(' ? m < ++d && (n[m=d]='') : e==')' ? d-- : n[d]+=' '+e)),
    m+':'+n[m]
)

Firefoxコンソールでテストします。

['A', '2(7(2,6(5,11)),5(9(4)))', 'A(B(C,D(E)))']
.map(x => x + ' --> ' + F(x)).join('\n')

出力

「A-> 0:A

2(7(2,6(5,11))、5(9(4)))-> 3:5 11 4

A(B(C、D(E)))-> 3:E "

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.