[1] реализация связного списка

This commit is contained in:
ivanchenkoam 2026-05-23 15:52:49 +03:00
parent c30410f5b0
commit 054035deac

View File

@ -5,4 +5,65 @@ import sys
from typing import List, Tuple, Optional, Any, Dict
#лимит рекурсии
sys.setrecursionlimit(20000)
sys.setrecursionlimit(20000)
def ll_insert(head: Optional[Dict], name: str, phone: str) -> Dict:
"""Вставка в конец связного списка"""
new_node = {'name': name, 'phone': phone, 'next': None}
if head is None:
return new_node
current = head
while current['next'] is not None:
# Обновляем, если уже есть
if current['name'] == name:
current['phone'] = phone
return head
current = current['next']
if current['name'] == name:
current['phone'] = phone
else:
current['next'] = new_node
return head
def ll_find(head: Optional[Dict], name: str) -> Optional[str]:
"""Поиск в связном списке"""
current = head
while current is not None:
if current['name'] == name:
return current['phone']
current = current['next']
return None
def ll_delete(head: Optional[Dict], name: str) -> Optional[Dict]:
"""Удаление из связного списка"""
if head is None:
return None
if head['name'] == name:
return head['next']
current = head
while current['next'] is not None:
if current['next']['name'] == name:
current['next'] = current['next']['next']
return head
current = current['next']
return head
def ll_list_all(head: Optional[Dict]) -> List[Tuple[str, str]]:
"""Сбор всех записей из связного списка с сортировкой"""
records = []
current = head
while current is not None:
records.append((current['name'], current['phone']))
current = current['next']
records.sort(key=lambda x: x[0])
return records