You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
482 B
21 lines
482 B
8 months ago
|
# File: vertex.py
|
||
|
# Created Time: 2023-02-23
|
||
|
# Author: krahets (krahets@163.com)
|
||
|
|
||
|
|
||
|
class Vertex:
|
||
|
"""頂點類別"""
|
||
|
|
||
|
def __init__(self, val: int):
|
||
|
self.val = val
|
||
|
|
||
|
|
||
|
def vals_to_vets(vals: list[int]) -> list["Vertex"]:
|
||
|
"""輸入值串列 vals ,返回頂點串列 vets"""
|
||
|
return [Vertex(val) for val in vals]
|
||
|
|
||
|
|
||
|
def vets_to_vals(vets: list["Vertex"]) -> list[int]:
|
||
|
"""輸入頂點串列 vets ,返回值串列 vals"""
|
||
|
return [vet.val for vet in vets]
|