题解 | #旋转数组的最小数字#

旋转数组的最小数字

https://www.nowcoder.com/practice/9f3231a991af4f55b95579b44b7a01ba

using System;
using System.Collections.Generic;


class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param nums int整型一维数组
     * @return int整型
     */
    public int minNumberInRotateArray(List<int> nums) {
        // write code here
        if (nums == null || nums.Count == 0)
            return 0;
        if (nums.Count == 1)
            return nums[0];
        nums.Sort();
        return nums[0];
    }

    public int EF(List<int> nums, int nL, int nR) {
        if (nL > nR)
            return nL - 1;
        int nM = (nL + nR) / 2;
        if (nums[nM] <= nums[nL] && nums[nM] <= nums[nR])
            return nM;
        if (nums[nM] >= nums[nL])
            return EF(nums, nM + 1, nR);
        else
            return EF(nums, nL, nM);
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
昨天 11:29
点赞 评论 收藏
分享
白火同学:大二有这水平很牛了,可以适当对关键信息加粗一点,比如关键技术、性能指标之类的。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务