LeetCode - 33. Search in Rotated Sorted Array

简介: 33. Search in Rotated Sorted Array  Problem's Link  ---------------------------------------------------------------------------- ...

33. Search in Rotated Sorted Array 

Problem's Link

 ----------------------------------------------------------------------------

Mean: 

给你一个数组,这个数组是由两个有序的数组拼接成的(无重复元素),在这个数组中查找元素k的下标.

analyse:

既然是由两个有序数组拼接而成,那么只需找到断点,然后进行两次二分查找就行.

Time complexity: O(N)

 

view code

/**
* -----------------------------------------------------------------
* Copyright (c) 2016 crazyacking.All rights reserved.
* -----------------------------------------------------------------
*       Author: crazyacking
*       Date  : 2016-03-01-21.22
*/
#include <queue>
#include <cstdio>
#include <set>
#include <string>
#include <stack>
#include <cmath>
#include <climits>
#include <map>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
using namespace std;
typedef long long( LL);
typedef unsigned long long( ULL);
const double eps( 1e-8);

class Solution
{
public :
    int search( vector < int >& nums , int target)
    {
        int len = nums . size();
        int low1 = 0 , high1 = len - 1 , low2 = 0 , high2 = len - 1;
        for( int i = 1; i < len; ++ i)
        {
            if( nums [ i ] < nums [ i - 1 ])
            {
                high1 = i - 1 , low2 = i;
                break;
            }
        }
        if( high1 == len - 1 && low2 == 0)
            return isExist( nums , low1 , high2 , target);
        else
        {
            int idx1 = isExist( nums , low1 , high1 , target);
            int idx2 = isExist( nums , low2 , high2 , target);
            if( idx1 ==- 1 && idx2 ==- 1)
                return - 1;
            else
                return idx1 !=- 1 ? idx1: idx2;
        }
    }

    int isExist( vector < int >& nums , int low , int high , int target)
    {
        while( low <= high)
        {
            int mid =( low + high) >> 1;
            if( target < nums [ mid ])
                high = mid - 1;
            else if( target > nums [ mid ])
                low = mid + 1;
            else return mid;
        }
        return - 1;
    }
};

int main()
{
    Solution solution;
    int n , k;
    vector < int > ve;
    while( cin >>n >> k)
    {
        int tempVal;
        for( int i = 0; i <n; ++ i)
        {
            cin >> tempVal;
            ve . push_back( tempVal);
        }
        int ans = solution . search( ve , k);
        cout << ans << endl;
    }
    return 0;
}
/*

*/
目录
相关文章
Leetcode 74. Search a 2D Matrix
这道题很简单,为此专门写篇博客其实算博客凑数了。给你一个每一行每一列都是增序,且每一行第一个数都大于上一行末尾数的矩阵,让你判断某个数在这个矩阵中是否存在。 假设矩阵是m*n,扫一遍的时间复杂度就是O(m*n),题目中给出的这么特殊的矩阵,时间复杂度可以降到O(m+n),具体代码如下,写的比较挫。
94 1
Leetcode 4. Median of Two Sorted Arrays
题目描述很简单,就是找到两个有序数组合并后的中位数,要求时间复杂度O(log (m+n))。 如果不要去时间复杂度,很容易就想到了归并排序,归并排序的时间复杂度是O(m+n),空间复杂度也是O(m+n),不满足题目要求,其实我开始也不知道怎么做,后来看了别人的博客才知道有个二分法求两个有序数组中第k大数的方法。
42 0
Leetcode Find Minimum in Rotated Sorted Array 题解
对一个有序数组翻转, 就是随机取前K个数,移动到数组的后面,然后让你找出最小的那个数,注意,K有可能是0,也就是没有翻转。
55 0
Search in Rotated Sorted Array - 循环有序数组查找问题
Search in Rotated Sorted Array - 循环有序数组查找问题
75 0
LeetCode 167 Two Sum II - Input array is sorted(输入已排序数组,求其中两个数的和等于给定的数)
给定一个有序数组和一个目标值 找出数组中两个成员,两者之和为目标值,并顺序输出
92 0
|
算法 Python
LeetCode 108. 将有序数组转换为二叉搜索树 Convert Sorted Array to Binary Search Tree
LeetCode 108. 将有序数组转换为二叉搜索树 Convert Sorted Array to Binary Search Tree
|
4月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
5月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
64 6
|
5月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
130 2
|
2月前
|
机器学习/深度学习 人工智能 自然语言处理
280页PDF,全方位评估OpenAI o1,Leetcode刷题准确率竟这么高
【10月更文挑战第24天】近年来,OpenAI的o1模型在大型语言模型(LLMs)中脱颖而出,展现出卓越的推理能力和知识整合能力。基于Transformer架构,o1模型采用了链式思维和强化学习等先进技术,显著提升了其在编程竞赛、医学影像报告生成、数学问题解决、自然语言推理和芯片设计等领域的表现。本文将全面评估o1模型的性能及其对AI研究和应用的潜在影响。
54 1