广义表LS=((a,b,c),((d),(e),(f))),则深度为_. head(tail(head(tail(LS))))=?
问题描述:
广义表LS=((a,b,c),((d),(e),(f))),则深度为_. head(tail(head(tail(LS))))=?
答
深度为3
tail(LS) = (((d),(e),(f)))
head(tail(LS) = ((d),(e),(f))
tail(head(tail(LS)))= ((e),(f))
head(tail(head(tail(LS)))) = (e)