我是haskell的新手,正在尝试编写一个函数来生成只包含连续子集的powerset,例如: 1,2,3 -> [[],1,2,3,1,2,2,3,1,2,3]
我在博客http://davidtran.doublegifts.com/blog/?p=7上找到了这个
powerset :: [a] -> [[a]]
powerset [] = [[]]
powerset (x:xs) = powerset xs ++ map (x:) (powerset xs)
-- powerset (x:xs) = powerset xs ++ [x:xs' | xs' <- powerset xs]
但这会生成我不想要的所有子集,即1,3?有没有办法修复这段代码才能工作,或者我必须重新考虑我的方法。此外,我不想使用内置库函数,我想让我的基础知识正确。
发布于 2012-03-22 23:39:22
就像这样
conseqPower = ([] :) . concatMap (tail . inits) . tails
发布于 2012-03-22 23:36:06
过滤掉非“连续”列表。
https://stackoverflow.com/questions/9831939
复制相似问题