温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

还是一道旋转数组的题目

发布时间:2020-04-06 11:57:00 来源:网络 阅读:228 作者:wzdouban 栏目:编程语言
 /*
 关于这 数组偏移
 1 2 3 4 5   3---->>   3 4 5 1 2
 n =5  返回 2
 */
 
#include <bits/stdc++.h>
using namespace std;
 int a[]={1,2,3,4,5};
 int n=5;
 int count=3;
int fun(int n,int a[],int count,int len)//不给数组长度真的不好做 ,JAVA是能由数组直接拿
{
     int b[2*len];  int ret=0;
     for(int i=0;i<2*len;i++)
      {
          b[i]=a[i%len];//cout<<b[i]<<"  "; 空间换时间,思考的一种方法               
      }
    for(int i=count-1;i<count-1+len;i++)  
      {
        cout<<b[i]<<"  ";   //即输出 旋转后的数组
        if(b[i]==n) 
          {
              ret=i-count+1; 
          }
      }
      cout<<endl;
      return ret;
}
// 1 2 3 4 5 1 2 3 4 5
//     ---------
int main()
{
    cout<<fun(5,a,3,5)<<endl; 
	cout << "Hello,C++ world of AnycodeX!" << endl;
	return 0;
}


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI