Python:实现simple binary search简单的二分查找算法 from __future__ import annotations def binary_search(a_list: list[int], item: int) -> bool