标签:笔试题
#include <iostream>
using namespace std;
//产生任意范围的随机数。
int Grial(int i,int j )
{
int x = 0;
while (!(x>=i && x<j))
{
x = rand() % j;
}
return x;
}
int main()
{
cout << Grial(4, 100) << endl;
return 0;
}
#include <iostream>
using namespace std;
//给定一个数组a[N],我们希望构造数组b[N],
//其中b[j]=a[0]*a[1]..a[N-1]/a[j];要求时间复杂度
//以及空间复杂度。
void Grial(int a[], int* &b,int n)
{
int i = 0;
int count = 1;
int k = 0;
while (k < n)
{
for (i = 0; i < n; i++)
{
if (i == k)
{
continue;
}
else
{
count *= a[i];
}
}
b[k++]=count;
count = 1;
}
//好像是腾讯2012年笔试题,毫无难度呀!
}
int main()
{
int a[] = {1,2,3};
int *b = new int[sizeof(a) / sizeof(int)];
Grial(a, b,sizeof(a)/sizeof(int));
for (int i = 0; i < sizeof(a) / sizeof(int); i++)
{
cout << b[i] << endl;
}
return 0;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:笔试题
原文地址:http://blog.csdn.net/liuhuiyan_2014/article/details/46849265