У меня есть текстовый файл 384 МБ с 50 миллионами строк. Каждая строка содержит 2 целых числа, разделенные пробелами: ключ и значение. Файл сортируется по ключу. Мне нужен эффективный способ поиска значений из списка из 200 ключей в Python.
Мой текущий подход включен ниже. Это займет 30 секунд. Должен быть более эффективный Python foo, чтобы добиться максимальной эффективности всего за пару секунд.
# list contains a sorted list of the keys we need to lookup
# there is a sentinel at the end of list to simplify the code
# we use pointer to iterate through the list of keys
for line in fin:
line = map(int, line.split())
while line[0] == list[pointer].key:
list[pointer].value = line[1]
pointer += 1
while line[0] > list[pointer].key:
pointer += 1
if pointer >= len(list) - 1:
break # end of list; -1 is due to sentinel
Кодированный бинарный поиск + поиск решения (спасибо kigurai!):
entries = 24935502 # number of entries
width = 18 # fixed width of an entry in the file padded with spaces
# at the end of each line
for i, search in enumerate(list): # list contains the list of search keys
left, right = 0, entries-1
key = None
while key != search and left <= right:
mid = (left + right) / 2
fin.seek(mid * width)
key, value = map(int, fin.readline().split())
if search > key:
left = mid + 1
else:
right = mid - 1
if key != search:
value = None # for when search key is not found
search.result = value # store the result of the search