python列表筛选_Python列表筛选:从列表列表中移除子集

如果列表不是任何其他列表的子集,则它是超级列表。如果列表中的每个元素都可以按顺序在另一个列表中找到,则它是另一个列表的子集。

这是我的代码:def is_sublist_of_any_list(cand, lists):

# Compare candidate to a single list

def is_sublist_of_list(cand, target):

try:

i = 0

for c in cand:

i = 1 + target.index(c, i)

return True

except ValueError:

return False

# See if candidate matches any other list

return any(is_sublist_of_list(cand, target) for target in lists if len(cand) <= len(target))

# Compare candidates to all other lists

def super_lists(lists):

return [cand for i, cand in enumerate(lists) if not is_sublist_of_any_list(cand, lists[:i] + lists[i+1:])]

if __name__ == '__main__':

lists = [[1, 2, 4, 8], [1, 2, 4, 5, 6], [1, 2, 3], [2, 3, 21], [1, 2, 3, 4], [1, 2, 3, 4, 5, 6, 7]]

superlists = super_lists(lists)

print superlists

结果如下:[[1, 2, 4, 8], [2, 3, 21], [1, 2, 3, 4, 5, 6, 7]]

编辑:以后数据集的结果。>>> lists = [[2, 16, 17], [1, 2, 3, 4, 5, 6, 7], [1], [1, 2, 3, 4], [1, 2], [17,

18, 19, 22, 41, 48], [2, 3], [1, 2, 3], [50, 69], [1, 2, 3], [2, 3, 21], [1, 2,

3], [1, 2, 4, 8], [1, 2, 4, 5, 6]]

>>> superlists = super_lists(lists)

>>> expected = [[2, 16, 17], [1, 2, 3, 4, 5, 6, 7], [17, 18, 19, 22, 41, 48], [5

0, 69], [2, 3, 21], [1, 2, 4, 8]]

>>> assert(superlists == expected)

>>> print superlists

[[2, 16, 17], [1, 2, 3, 4, 5, 6, 7], [17, 18, 19, 22, 41, 48], [50, 69], [2, 3,

21], [1, 2, 4, 8]]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值