找到数组中的反转次数 [英] find number of inversions in array

查看:54
本文介绍了找到数组中的反转次数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

查找数组中的反转次数

其中数组是随机1到100000 ????

find number of inversions in array
Where array are randomly 1 to 100000 ????

推荐答案

我怀疑谷歌赢了'在您的案例中有任何帮助:约3,240,000个结果 [ ^ ]。
I suspect Google won''t be of any help in your case: "About 3,240,000 results"[^].


hi

如果你想反转一个数字然后按照下面的代码:

hi
if you want to make a number inverse then follow the follow the following code:
console.writeLine("Enter the position of the number for reverse :");
int no,rem,rev=0;
no= Console.ReadLine();
while(no!=0)
{
  rem=no%10;
  rev=rev*10+rem;
  no=no/10;
  
}





如果您想要反转数组,请使用以下内容:



if you want to inversion of the array then use the following:

int count,no,j,i;
<data type=""> array[],temp[];
for(i=0;i<array.lenght;i++);>
for(j=0;i>=0,j<array.lenght;i--,j++)>
{
  temp[j]=array[i];
}
console.writeLine("your reverse array is:");
for(i=0;i<array.lenght;i++)>
{
 console.writeLine(temp[i]);
}
</data>


这篇关于找到数组中的反转次数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆