我有一份列表字典。每个列表都是一系列数字。没有两个列表是相同的,但是两个或多个列表可以以相同的数字序列开头(请参阅下面的示例输入)。我想要做的是找到这些常见的序列,并使它们成为字典中的新元素。
示例输入:
sequences = {
18: [1, 3, 5, 6, 8, 12, 15, 17, 18],
19: [1, 3, 5, 6, 9, 13, 14, 16, 19],
25: [1, 3, 5, 6, 9, 13, 14, 20, 25],
11: [0, 2, 4, 7, 11],
20: [0, 2, 4, 10, 20],
26: [21, 23, 26],
}
示例输出:
expected_output = {
6: [1, 3, 5, 6],
18: [8, 12, 15, 17, 18],
14: [9, 13, 14],
19: [16, 19],
25: [20, 25],
4: [0, 2, 4],
11: [7, 11],
20: [10, 20],
26: [21, 23, 26],
}
每个列表的键是它的最后一个元素。订单无关紧要。
我有一个有效的代码。但是,它非常混乱。有人可以建议一个更简单/更清洁的解决方案吗?
from collections import Counter
def split_lists(sequences):
# get first elem from each sequence
firsts = list(map(lambda s: s[0], sequences))
# get non-duplicate first elements
not_duplicates = list(map(lambda c: c[0], filter(lambda c: c[1] == 1, Counter(firsts).items())))
# start the new_sequences with the non-duplicate lists
new_sequences = dict(map(lambda s: (s[-1], s), filter(lambda s: s[0] in not_duplicates, sequences)))
# get duplicate first elements
duplicates = list(map(lambda c: c[0], filter(lambda c: c[1] > 1, Counter(firsts).items())))
for duplicate in duplicates:
# get all lists that start with the duplicate element
duplicate_lists = list(filter(lambda s: s[0] == duplicate, sequences))
# get the common elements from the duplicate lists and make it a new
# list to add to our new_sequences dict
repeated_sequence = sorted(list(set.intersection(*list(map(set, duplicate_lists)))))
new_sequences[repeated_sequence[-1]] = repeated_sequence
# get lists from where I left of
i = len(repeated_sequence)
sub_lists = list(filter(lambda s: len(s) > 0, map(lambda s: s[i:], duplicate_lists)))
# recursively split them and store them in new_sequences
new_sequences.update(split_lists(sub_lists))
return new_sequences
另外,你能帮我弄清楚算法的复杂性吗?递归让我头晕目眩。我最好的猜测是O(n*m)
,其中n
是列表的数量,m
是最长列表的长度。
答案 0 :(得分:3)
将其分成逻辑函数:
可以使用defaultdict
from collections import defaultdict
def same_start(sequences):
same_start = defaultdict(list)
for seq in sequences:
same_start[seq[0]].append(seq)
return same_start.values()
list(same_start(sequences.values()))
[[[1, 3, 5, 6, 8, 12, 15, 17, 18],
[1, 3, 5, 6, 9, 13, 14, 16, 19],
[1, 3, 5, 6, 9, 13, 14, 20, 25]],
[[0, 2, 4, 7, 11], [0, 2, 4, 10, 20]],
[[21, 23, 26]]]
一个简单的生成器,只要它们都是相同的就会产生值
def get_beginning(sequences):
for values in zip(*sequences):
v0 = values[0]
if not all(i == v0 for i in values):
return
yield v0
def aggregate(same_start):
for seq in same_start:
if len(seq) < 2:
yield seq[0]
continue
start = list(get_beginning(seq))
yield start
yield from (i[len(start):] for i in seq)
list(aggregate(same_start(sequences.values())))
[[1, 3, 5, 6],
[8, 12, 15, 17, 18],
[9, 13, 14, 16, 19],
[9, 13, 14, 20, 25],
[0, 2, 4],
[7, 11],
[10, 20],
[21, 23, 26]]
如果你想组合序列18
和25
,那么你可以做这样的事情
def combine(sequences):
while True:
s = same_start(sequences)
if all(len(i) == 1 for i in s):
return sequences
sequences = tuple(aggregate(s))
{i[-1]: i for i in combine(sequences.values())}
{4: [0, 2, 4],
6: [1, 3, 5, 6],
11: [7, 11],
14: [9, 13, 14],
18: [8, 12, 15, 17, 18],
19: [16, 19],
20: [10, 20],
25: [20, 25],
26: [21, 23, 26]}
答案 1 :(得分:2)
使用一些功能工具这就是我想出的(假设序列已经排序)。要点在find_longest_prefixes
:
#!/usr/bin/env python
from itertools import chain, takewhile
from collections import defaultdict
sequences = {
18: [1, 3, 5, 6, 8, 12, 15, 17, 18],
19: [1, 3, 5, 6, 9, 13, 14, 16, 19],
25: [1, 3, 5, 6, 9, 13, 14, 20, 25],
11: [0, 2, 4, 7, 11],
20: [0, 2, 4, 10, 20],
26: [21, 23, 26],
}
def flatmap(f, it):
return chain.from_iterable(map(f, it))
def all_items_equal(items):
return len(set(items)) == 1
def group_by_first_item(ls):
groups = defaultdict(list)
for l in ls:
groups[l[0]].append(l)
return groups.values()
def find_longest_prefixes(ls):
# takewhile gives us common prefix easily
longest_prefix = list(takewhile(all_items_equal, zip(*ls)))
if longest_prefix:
yield tuple(vs[0] for vs in longest_prefix)
# yield suffix per iterable
leftovers = filter(None, tuple(l[len(longest_prefix):] for l in ls))
leftover_groups = group_by_first_item(leftovers)
yield from flatmap(find_longest_prefixes, leftover_groups)
# apply the prefix finder to all groups
all_sequences = find_longest_prefixes(sequences.values())
# create the result structure expected
results = {v[-1]: v for v in all_sequences}
print(results)
结果的值是:
{4: (0, 2, 4),
6: (1, 3, 5, 6),
11: (7, 11),
18: (8, 12, 15, 17, 18),
19: (9, 13, 14, 16, 19),
20: (10, 20),
25: (9, 13, 14, 20, 25),
26: (21, 23, 26)}
请注意,这些是我更喜欢它们不可变性的元组。