Я пытаюсь перебрать вложенные списки и сопоставить их с шаблоном, а затем создать список совпадений.Однако моя функция сопоставления может пройти только самый внешний список.Как можно расширить его (функция сопоставления), чтобы он также считывал все вложенные списки в базе данных.Вот код:
database = [[['author', ['karl', 'jacksson']], ['title', ['jumping',
'high']], ['year', 2010]], [['author', ['keith', 'night']],
['title', ['chasing', 'shadows', 'in', 'the', 'dark']],
['year', 2012]]]
pattern = ['--', ['titel', ['&', '&']], '--']
('-' меню может соответствовать 0 или более элементам, '&' означает, что он может соответствовать только одному элементу)
def searching(pattern, database):
'''
Go through the database and see if anything matches the pattern
then create a list of all matched patterns
'''
return [i for i in database if matching(i, pattern)]
def matching(sequence, the_pattern):
"""
Returns if a given sequence matches the given pattern
"""
if not the_pattern:
return not sequence
elif the_pattern[0] == '--':
if matching(sequence, the_pattern[1:]):
return True
elif not sequence:
return False
else:
return matching(sequence[1:], the_pattern)
elif not sequence:
return False
elif the_pattern[0] == '&':
return matching(sequence[1:], the_pattern[1:])
elif sequence[0] == pattern[0]:
return matching(sequence[1:], the_pattern[1:])
else:
return False
Здесьпример:
ВХОД
searching(['--', ['titel', ['&', '&']], '--'], database)
ВЫХОД
[[['author', ['karl', 'jacksson']], ['title', ['jumping', 'high']],
['year', 2010]]]