Python:实现double linear search recursion双线性搜索递归算法 def search(list_data: list, key: int, left: int = 0, right: int = 0<