Python:实现merge insertion sort合并插入排序算法 from __future__ import annotations def merge_insertion_sort(collection: list[int]) -> list[int]