还是一道旋转数组的题目
发表于:2024-11-25 作者:热门IT资讯网编辑
编辑最后更新 2024年11月25日,/* 关于这 数组偏移 1 2 3 4 5 3---->> 3 4 5 1 2 n =5 返回 2 */ #include using namespace std; int a[]={1,2
/* 关于这 数组偏移 1 2 3 4 5 3---->> 3 4 5 1 2 n =5 返回 2 */ #includeusing 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<