我是靠谱客的博主 烂漫帅哥,最近开发中收集的这篇文章主要介绍旋转数组的最小数字,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

旋转数组的最小数字,没太理解,所以就判断最小的下标,然后翻转最小值之后的,带测试

//#include "stdafx.h"
#include<iostream>
#include<string>
#include<cctype>
#include <vector>
#include<exception>
#include <initializer_list>
#include<stack>
using namespace std;

class Solution {
public:
	vector<int> minNumberInRotateArray(vector<int> rotateArray) {
		int temp= rotateArray[0],j=0;//临时变量

		for (int i = 0; i < rotateArray.size(); i++) {//判断最小值位置下标
			if(rotateArray[i]<temp){
				temp  = rotateArray[i];
				j = i;
			}
		}
		vector<int> temp2;
		for (int i = 0; i < j; i++) {
			temp2.push_back(rotateArray[j + i]);//将前部分后入到新向量中
		}
		for (int i = 0; (i+j)< rotateArray.size(); i++) {
			temp2.push_back(1);//将后部分后入到新向量中
		}
		return temp2;//返回向量
	
		}
};


int main()
{
	Solution a;
	vector<int> in = { 4, 7, 2, 1, 5, 3, 8, 6 },b;
	b=a.minNumberInRotateArray(in);
	cout << b[0];	
}

最后

以上就是烂漫帅哥为你收集整理的旋转数组的最小数字的全部内容,希望文章能够帮你解决旋转数组的最小数字所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部