需要排序的最短子数组长度

要求: 给定一个无序数组arr,求出需要排序的最短子数组长度

 1 // getMinLength.cpp : 定义控制台应用程序的入口点。
 2 //
 3
 4 #include "stdafx.h"
 5 #include <iostream>
 6
 7 using namespace std;
 8
 9 void getMinLength(int arr[],int len)
10 {
11     if(len == 0)
12         return;
13
14     //从后往前找到最小值,并记录最小值左边比它大的数的范围
15     int noMinIndex = -1;
16     int minNum = arr[len - 1];
17     for(int i = len -2;i > -1;i--)
18     {
19         if(arr[i] > minNum)
20             noMinIndex = i;
21         else
22             minNum = min(minNum,arr[i]);
23     }
24
25     if(noMinIndex == -1)
26         return;
27
28
29     //从前往后找一个极大值,并找到该极大值右边比它小的最远范围
30     int noMaxIndex = -1;
31     int maxNum = arr[0];
32     for(int i =1;i < len;i++)
33     {
34         if(arr[i] < maxNum)
35             noMaxIndex = i;
36         else
37             maxNum = max(arr[i],maxNum);
38     }
39
40     cout<<noMinIndex<<" ---"<<noMaxIndex<<"  :"<<noMaxIndex-noMinIndex+1<<endl;
41 }
42
43 int _tmain(int argc, _TCHAR* argv[])
44 {
45     int arr[] = {1,5,3,4,2,6,7};
46     int len = 7;
47     getMinLength(arr,len);
48     system("pause");
49     return 0;
50 }

时间: 2024-11-03 03:47:38

需要排序的最短子数组长度的相关文章

《程序员代码面试指南》第八章 数组和矩阵问题 需要排序的最短子数组长度

题目 需要排序的最短子数组长度 java代码 package com.lizhouwei.chapter8; /** * @Description: 需要排序的最短子数组长度 * @Author: lizhouwei * @CreateDate: 2018/4/29 8:03 * @Modify by: * @ModifyDate: */ public class Chapter8_5 { public int getMinLength(int[] arr) { if (arr == null

[算法]需要排序的最短子数组长度

题目: 给定一个无序数组,求出需要排序的最短子数组的长度. 例如:arr={1,5,3,4,2,6,7}返回4,因为只有[5,3,4,2]需要排序. 思路: 解决这个问题可以在时间复杂度为O(N).额外空间复杂度为O(1)完成. 初始化变量noMinIndex=-1,从右向左遍历,便利的过程记录右侧出现过的数的最小值,记为min.假设当前数为arr[i],如果arr[i]>min,说明如果要整体有序,min值必然会移到arr[i]的左边.用noMinIndex记录最左边出现这种情况的位置.如果遍

2-1-需排序的最短子数组长度

题目描述: 对于一个无序数组A,请设计一个算法,求出需要排序的最短子数组的长度. 给定一个整数数组A及它的大小n,请返回最短子数组的长度. 测试样例: [1,5,3,4,2,6,7],7 返回:4 1 /* 2 这个题在牛客网上的讲解我感觉是有点问题的, 3 因为默认了升序排序! 4 如下实现对数组[8,7,6,5,4,3]的结果将会是6, 5 实际上此时的结果应该为0,因为现在已经是有序的了. 6 */ 7 #include <iostream> 8 #include <vector&

给定一个无序数组arr,求出需要排序的最短子数组长度。例如: arr = [1,5,3,4,2,6,7] 返回4,因为只有[5,3,4,2]需要排序。

思路 首先从左往右遍历,然后设定一个Max,如果遍历的过程中array[i]大于Max,则置换Max,若小于Max,则指定 k 记录该位置. 然后再从右往左遍历,设定一个Min,在遍历的过程中array[i]小于Min,则置换Min,若大于Min,则指定 j 记录该位置. 于是 j~~k之间的就是需要排序的. 如上例,Max首先是1,然后遍历 Max=1,array[i]=1,置换Max,Max=1 Max=1,array[i]=5,置换Max,Max=5 Max=5,array[i]=3,k指

需要排序的最短子数组的长度——是一个排序好的数组,中间某一部分被打乱了,让你找出打乱的那个子数组

需要排序的最短子数组的长度 貌似在leetcode上遇到过,就是一个排序好的数组,中间某一部分被打乱了,让你找出打乱的那个子数组. from:https://blog.csdn.net/behboyhiex/article/details/80758686 [题目] 给定一个无序数组arr,求出需要排序的最短子数组长度. 例如: arr = [1, 5, 3, 4, 2, 6, 7]返回4,因为只有[5, 3, 4, 2]需要排序. [思路] 双指针 第一次从左向右遍历,找左边比当前位置大的 第

第二章 排序 || 第19节 最短子数组练习题

题目 对于一个数组,请设计一个高效算法计算需要排序的最短子数组的长度. 给定一个int数组A和数组的大小n,请返回一个二元组,代表所求序列的长度.(原序列位置从0开始标号,若原序列有序,返回0).保证A中元素均为正整数. 测试样例: [1,4,6,5,9,10],6 返回:2 解析 C++版 class Subsequence { public: int shortestSubsequence(vector<int> A, int n) { // write code here int sta

[Swift]LeetCode862. 和至少为 K 的最短子数组 | Shortest Subarray with Sum at Least K

Return the length of the shortest, non-empty, contiguous subarray of A with sum at least K. If there is no non-empty subarray with sum at least K, return -1. Example 1: Input: A = [1], K = 1 Output: 1 Example 2: Input: A = [1,2], K = 4 Output: -1 Exa

[LeetCode] 209. Minimum Size Subarray Sum 最短子数组之和

Given an array of n positive integers and a positive integer s, find the minimal length of a contiguous subarray of which the sum ≥ s. If there isn't one, return 0 instead. Example: Input: s = 7, nums = [2,3,1,2,4,3] Output: 2 Explanation: the subarr

最大和子数组/最大和子序列

最大和子数组是数组中和最大的子数组,又名最大和子序列.子数组是数组中连续的n个元素,比如a2,a3,a4就是一个长度为3的子数组.顾名思义求最大和子数组就是要求取和最大的子数组. n个元素的数组包含n个长度为1的子数组:{a0},{a1},…{an-1}: n个元素的数组包含n-1个长度为2的子数组:{a0,a1},{a1,a2},{an-2,an-1}: ……………………………………………………………………………………………… n个元素的数组包含1个长度为n的子数组:{a0,a1,…,an-1