Mathematica 如何生成这类列表?

2025-01-03 16:17:28
推荐回答(1个)
回答1:

s2=Table[#[[-i ;;]], {i, Length@# - 1, 1, -1}] &@s1
这是最容易想到的,不过恐怕也是速度最慢的。稍好一些的可以写:
NestList[Rest, Rest@#, Length@# - 2] &@s1
最快的办法是什么我也不知道,我去贴吧帮你问问吧。