Lisp抽出ミッション


19

Lispスタイルの言語では、リストは通常​​次のように定義されます。

(list 1 2 3)

このチャレンジのために、すべてのリストには正の整数または他のリストのみが含まれます。またlist、最初はキーワードを省略するため、リストは次のようになります。

(1 2 3)

を使用して、リストの最初の要素を取得できますcar。例えば:

(car (1 2 3))
==> 1

そして、最初の要素が削除された元のリストを取得できますcdr

(cdr (1 2 3))
==> (2 3)

重要:cdrリストに単一の要素がある場合でも、常にリストを返します。

(cdr (1 2))
==> (2)
(car (cdr (1 2)))
==> 2

リストは、他のリスト内に含めることもできます。

(cdr (1 2 3 (4 5 6)))
==> (2 3 (4 5 6))

そのリターンコードは、その使用するプログラムを書くcarcdr、リスト内の特定の整数を返すように。プログラムが返すコードでは、リストがに格納されl、ターゲット整数がlどこかにあり、すべての整数が一意であると想定できます。

例:

入力: (6 1 3) 3

出力: (car (cdr (cdr l)))

入力: (4 5 (1 2 (7) 9 (10 8 14))) 8

出力: (car (cdr (car (cdr (cdr (cdr (cdr (car (cdr (cdr l))))))))))

入力: (1 12 1992) 1

出力: (car l)


最初に整数を入力し、次にリストを入力できますか?
マーティンエンダー

@MartinBüttner確かに。
アブサン

何を(1 2 3) 16、私たちは返還しなければなりませんか()
コアダンプ

@coredump良い質問です。ターゲットの整数は常に式の中にあると想定できるため、次のようなケース(1 2 3) 16は表示されません。
アブサン

リスト用と整数用の2つの入力を受信できますか?
ブラックホール

回答:


1

CJam、59

q"()""[]"er~{:AL>{0jA1<e_-_A(?j'l/"(car l)"@{2'dt}&*}"l"?}j

オンラインで試す

説明:

q                 read the input
"()""[]"er        replace parentheses with square brackets
~                 evaluate the string, pushing an array and a number
{…}j              calculate with memoized recursion using the array as the argument
                   and the number as the memozied value for argument 0
  :A              store the argument in A
  L>              practically, check if A is an array
                   if A is a (non-empty) array, compare with an empty array
                   (result 1, true)
                   if A is a number, slice the empty array from that position
                   (result [], false)
    {…}           if A is an array
      0j          get the memoized value for 0 (the number to search)
      A1<         slice A keeping only its first element
      e_          flatten array
      -           set difference - true iff the number was not in the array
      _           duplicate the result (this is the car/cdr indicator)
      A(          uncons A from left, resulting in the "cdr" followed by the "car"
      ?           choose the cdr if the number was not in the flattened first item,
                   else choose the car
      j           call the block recursively with the chosen value as the argument
      'l/         split the result around the 'l' character
      "(car l)"   push this string
      @           bring up the car/cdr indicator
      {…}&        if true (indicating cdr)
        2'dt      set the character in position 2 to 'd'
      *           join the split pieces using the resulting string as a separator
    "l"           else (if A is not an array) just push "l"
                   (we know that when we get to a number, it is the right number)
    ?             end if

10

Common Lisp、99

次の99バイトのソリューションは、素敵なScheme回答の CLバージョンです。

(defun g(l n &optional(o'l))(if(eql n l)o(and(consp l)(or(g(car l)n`(car,o))(g(cdr l)n`(cdr,o))))))

私はもともとpositionand を使用しようとしposition-ifましたが、私が望むほどコンパクトではないことがわかりました(209バイト):

(lambda(L x &aux(p'l))(labels((f(S &aux e)(cons(or(position x S)(position-if(lambda(y)(if(consp y)(setf e(f y))))S)(return-from f()))e)))(dolist(o(print(f L))p)(dotimes(i o)(setf p`(cdr,p)))(setf p`(car,p)))))

拡大

(lambda
  (l x &aux (p 'l))
  (labels ((f (s &aux e)
             (cons
              (or (position x s)
                  (position-if
                   (lambda (y)
                     (if (consp y)
                         (setf e (f y))))
                   s)
                  (return-from f nil))
              e)))
    (dolist (o (print (f l)) p)
      (dotimes (i o) (setf p `(cdr ,p)))
      (setf p `(car ,p)))))

(funcall *fun* '(4 5 (1 2 (7) 9 (10 8 14))) 14)

リストは引用されていますが、本当に必要な場合はマクロを使用できます。返される値は[1]です。

(CAR (CDR (CDR (CAR (CDR (CDR (CDR (CDR (CAR (CDR (CDR L)))))))))))

テストのためlに、変数であるラムダ形式を生成するために使用しました:

(LAMBDA (#:G854) (CAR (CDR (CDR (CAR (CDR (CDR (CDR (CDR (CAR (CDR (CDR #:G854))))))))))))

元のリストでこれを呼び出すと、14が返されます。


[1] (caddar (cddddr (caddr l)))もいい


2
Lisp でLispに関する質問に答えましたLisp-ception!
DanTheMan

4
@DanTheMan Lisp-ceptionは、Lispを定義するもののほとんどです;
コアダンプ

9

網膜170 142 125 115 114 87 84 83 75 73 70 69 68の 67バイト

ええ、最初の試行で100バイト超えても50%未満です。:)

\b(.+)\b.* \1$
(
^.
l
\(
a
+`a *\)|\d


d
+`(.*[l)])(\w)
(c$2r $1)

単一のファイルからコードを実行するには、 -sフラグを。

私はまだこれが最適であると確信していません...私は今後数日にわたって多くの時間を持っていないでしょう、私は最終的に説明を追加します。


5

Pyth、62バイト

JvXz"() ,][")u?qJQG&=J?K}Quu+GHNY<J1)hJtJ++XWK"(cdr "\d\aG\)\l

オンラインで試す:デモンストレーションまたはテストスイート

説明:

最初のビットJvXz"() ,][")は、文字"() ""[],"入力文字列の文字に置き換えます。これは、Pythonスタイルのリストの表現になります。評価して保存しますJます。

それから私は、文字列を減らしG = "l"u...\l。の値が変化しなくなるまで、内部関数を...繰り返し適用してから印刷します。GGG

内部関数は次のことを行います。Jすでに入力番号と等しい場合は、変更しないでくださいG?qJQG)。それ以外の場合は、リストJ[:1]をフラット化し、入力番号がそのリストにあるかどうかを確認して、変数に保存しますKK}Quu+GHNY<J1))。Pythにはflatten演算子がないため、これにはかなりのバイトが必要です。場合は、K私が持つJを更新するよりも、真実であるJ[0]そうで、J[1:]=J?KhJtJ)。そして、私は交換するG"(cdr G)"して置き換える場合は、真です()。daK++XWK"(cdr "\d\aG\)



1

PHP-177バイト

読みやすくするためにいくつかの改行を追加しました。

function f($a,$o,$n){foreach($a as$v){if($n===$v||$s=f($v,$o,$n))return
'(car '.($s?:$o).')';$o="(cdr $o)";}}function l($s,$n){echo f(eval(strtr
("return$s;",'() ','[],')),l,$n);}

以下は、バージョン化されていないバージョンです。

function extractPhp($list, $output, $number)
{
    foreach ($list as $value)
    {
        if (is_int($value))
        {
            if ($value === $number) {
                return '(car '. $output .')';
            }
        }
        else
        {
            $subOutput = extractPhp($value, $output, $number);
            if ($subOutput !== null) {
                return '(car '. $subOutput .')';
            }
        }

        $output = '(cdr '. $output .')';
    }
}

function extractLisp($stringList, $number)
{
    $phpCode = 'return '. strtr($stringList, '() ','[],') .';';
    $list = eval($phpCode);
    echo extractPhp($list, 'l', $number);
}

1

Haskell、190 188バイト

l "(4 5 (1 2 (7) 9 (10 8 14)))" 8

に評価する

"(car (cdr (car (cdr (cdr (cdr (cdr (car (cdr (cdr l))))))))))"

l(h:s)n=c$i(show n)s""""
i n(h:s)t l|h>'/'&&h<':'=i n s(t++[h])l|t==n='a':l|h=='('=j$'a':l|h==')'=j$tail$dropWhile(=='d')l|0<1=j$'d':l where j=i n s""
c[]="l"
c(h:s)="(c"++h:"r "++c s++")"

1
あなたは変えることができます(し、c関数内のc文字列に:c(h:s)="(c"++h:...
nimi

うわー、それがhChar であることでうまくいくとは思わなかった!
レイフウィラーツ

0

Common Lisp、168 155バイト

いくつかの愚かな再帰、それはおそらくもう少し凝縮される可能性があります:

(lambda(l e)(labels((r(l o)(setf a(car l)d(cdr l)x`(car,o)y`(cdr,o))(if(equal e a)x(if(atom a)(r d y)(if(find e l)(r d y)(if d(r d y)(r a x)))))))(r l'l)))

プリティプリント:

(lambda (l e)
  (labels ((r (l o)
             (setf a (car l) d (cdr l)
                   x `(car ,o) y `(cdr ,o))
             (if (equal e a) x
                 (if (atom a)
                     (r d y)
                     (if (find e l)
                         (r d y)
                         (if d
                             (r d y)
                             (r a x)))))))
    (r l 'l)))
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.