hello-algo/codes/python/modules/list_node.py

40 lines
981 B
Python
Raw Normal View History

"""
File: list_node.py
Created Time: 2021-12-11
Author: Krahets (krahets@163.com)
"""
2023-04-09 05:05:35 +08:00
class ListNode:
2023-04-09 05:05:35 +08:00
"""Definition for a singly-linked list node"""
def __init__(self, val: int):
2023-04-09 05:05:35 +08:00
self.val: int = val # 节点值
self.next: ListNode | None = None # 后继节点引用
def list_to_linked_list(arr: list[int]) -> ListNode | None:
2023-04-09 05:05:35 +08:00
"""Generate a linked list with a list"""
dum = head = ListNode(0)
for a in arr:
node = ListNode(a)
head.next = node
head = head.next
return dum.next
2023-04-09 05:05:35 +08:00
def linked_list_to_list(head: ListNode | None) -> list[int]:
2023-04-09 05:05:35 +08:00
"""Serialize a linked list into an array"""
arr: list[int] = []
while head:
arr.append(head.val)
head = head.next
return arr
2023-04-09 05:05:35 +08:00
def get_list_node(head: ListNode | None, val: int) -> ListNode | None:
2023-04-09 05:05:35 +08:00
"""Get a list node with specific value from a linked list"""
while head and head.val != val:
head = head.next
return head