16 lines
278 B
Python
16 lines
278 B
Python
from typing import List
|
|
from .Plan import Plan
|
|
|
|
|
|
class PlanPriorityMinHeap:
|
|
"""
|
|
计划优先小顶堆,按照优先级存储多个计划
|
|
"""
|
|
|
|
plans: List[Plan]
|
|
def __init__(self):
|
|
self.plans = []
|
|
|
|
def addPlan(self, plan: Plan):
|
|
pass
|