广义表运算 head(tail(((a,b).(c,d))))
问题描述:
广义表运算 head(tail(((a,b).(c,d))))
答案是(c,d) 是怎么 出来 好难啊
答
可以看成A=((a,b),(c,d))
tail(A)=((c,d))
head(tail(A))=(c,d)