LeetCode第34题

描述:

给定一个按照升序排列的整数数组 nums,和一个目标值 target。找出给定目标值在数组中的开始位置和结束位置。

你的算法时间复杂度必须是 O(log n) 级别。

如果数组中不存在目标值,返回 [-1, -1]

示例 1:

输入: nums = [5,7,7,8,8,10], target = 8
输出: [3,4]

示例 2:

输入: nums = [5,7,7,8,8,10], target = 6
输出: [-1,-1]

解析:遍历两次,第一次遍历可以确定数组中第一个索引的位置,第二次遍历可以确定数组中第二个索引的位置。

 public int[] SearchRange(int[] nums, int target)
        {
            int[] result = { -1,-1};
            for (int i = 0; i < nums.Length;i++ )
            {
                if(nums[i] == target){
                    result[0] = i;
                    break;
                }
            }
            for (int j = nums.Length - 1; j >=0;j-- )
            {
                if(nums[j] == target){
                    result[1] = j;
                    break;
                }
            }
            return result;
        }

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章