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

@coredump好问题。您可以假设目标整数将始终位于表达式中,因此(1 2 3) 16永远不会出现这样的情况。
苦艾酒

我们可以接收两个输入,一个输入列表,一个输入整数吗?
Blackhole 2015年

Answers:


1

果酱(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

普通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))))))

我最初尝试利用positionposition-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)))))))))))

为了测试,我曾经生成一个lambda形式,其中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的接待!
DanTheMan

4
@DanTheMan Lisp-ception几乎定义了Lisp ;-)
coredump

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。我将内部函数...反复应用于G,直到的值G不再改变然后打印G

内部函数执行以下操作:如果J已经等于输入数字,则不要修改G?qJQG)。否则,我将把列表弄平,J[:1]并检查输入数字是否在该列表中,并将其保存到变量KK}Quu+GHNY<J1))中。注意,Pyth没有flatten运算符,因此这需要花费很多字节。如果K为true,则我用J[0],否则用J[1:]=J?KhJtJ)更新J。然后我更换G"(cdr G)"和更换da,如果K是真实的(++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

哇,以为h是Char没用!
Leif Willerts 2015年

0

普通Lisp 168字节

一些愚蠢的递归问题,可能会被浓缩得更多:

(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)))
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.