请翻译:给定一个n个有序的整数数组num和一个目标值target,写一个函数搜索num中的ta
时间: 2024-02-29 16:56:14 浏览: 66
查询目标值是否在给定的一组数字中
rget。如果目标值存在,则返回其索引,否则返回-1。
Given a sorted integer array "num" with n elements and a target value "target", write a function to search for "target" in "num". If the target value exists, return its index, otherwise return -1.
阅读全文