zoukankan      html  css  js  c++  java
  • 153. 寻找旋转排序数组中的最小值

    假设按照升序排序的数组在预先未知的某个点上进行了旋转。

    ( 例如,数组 [0,1,2,4,5,6,7] 可能变为 [4,5,6,7,0,1,2] )。

    请找出其中最小的元素。

    你可以假设数组中不存在重复元素。

    示例 1:

    输入: [3,4,5,1,2]
    输出: 1

    示例 2:

    输入: [4,5,6,7,0,1,2]
    输出: 0

    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/find-minimum-in-rotated-sorted-array


    思路:

    这题给出的官方难度是中等,但是我也没理解到为啥0.0,就是找个最小值嘛

    那既然他是把数组有序的给变了,那我用前面博客里提到的各种经典排序算法给他排列回去不就好了

    输出第一个元素就是最小值

    class Solution {
        public int findMin(int[] nums) {
            Arrays.sort(nums);
            return nums[0];
        }
    }

    但是官方可能想要中二分查找来解决吧

    public int findMin(int[] nums) {
        int l = 0, h = nums.length - 1;
        while (l < h) {
            int m = l + (h - l) / 2;
            if (nums[m] <= nums[h]) {
                h = m;
            } else {
                l = m + 1;
            }
        }
        return nums[l];
    }
  • 相关阅读:
    随便写的,关于外部提交按钮
    thinkPHP--empey标签
    ramdajs库应用场景
    数组常用用法--map,filter,reduce
    接口签名
    四种常见的 POST 提交数据方式
    localhost、127.0.0.1和0.0.0.0和本机IP的区别
    ftp与sftp
    本地已有项目上传git
    github和gitlab比较
  • 原文地址:https://www.cnblogs.com/zzxisgod/p/13339481.html
Copyright © 2011-2022 走看看