括弧でくくる: Sample 1: 基本(C)
■ 概要
このサンプルでは式(1)にしたがって配列xから配列yを計算します。式(1)では掛け算が3回、足し算が2回あります。式(1)を変形すれば足し算が同じですが、掛け算が1回になります。
... 式(1)
下の「回答例」ボタンをクリックすれば、式(2)に回答例が表示されます。興味がある方はクリックする前にぜひ考えてみてください。
... 式(2)
Code 1は式(1)によってコーディングしたものです。Code 2は式(2)によってコーディングしたものです。配列xとyのサイズnは10,000とします。計算時間が非常に短いので、より正確な計算時間を得るためにこの計算は100,000回まわします。
■ ソースコード
◆ Code 1
|
◆ Code 2
|
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int i,j;
int n = 10000, m = 100000;
// Initialization
double a = rand();
double b = rand();
double c = rand();
double *x = new double[n];
double *y = new double[n];
for (i=0; i<n; i++) x[i] = rand();
// Start time
clock_t time0 = clock();
// Main calculation
for (j=0; j<m; j++)
for (i=0; i<n; i++)
y[i] = a * x[i] + b * x[i] + c * x[i];
// Finish time
clock_t time1 = clock();
// Output time
double time = (double)(time1-time0)/CLOCKS_PER_SEC;
printf("Time = %15.7f sec\n", time);
delete[] x;
delete[] y;
return 0;
}
|
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int i,j;
int n = 10000, m = 100000;
// Initialization
double a = rand();
double b = rand();
double c = rand();
double *x = new double[n];
double *y = new double[n];
for (i=0; i<n; i++) x[i] = rand();
// Start time
clock_t time0 = clock();
// Main calculation
for (j=0; j<m; j++)
for (i=0; i<n; i++)
y[i] = (a + b + c) * x[i];
// Finish time
clock_t time1 = clock();
// Output time
double time = (double)(time1-time0)/CLOCKS_PER_SEC;
printf("Time = %15.7f sec\n", time);
delete[] x;
delete[] y;
return 0;
}
|
■ 計算時間の測定結果
Code 1とCode 2の計算時間の測定結果を表1に示します。ここではそれぞれのコードを5回実行して、平均とCode 1とCode 2との計算時間の比率も表示します。
表1 計算時間の測定結果(単位: sec)
|
1回目 |
2回目 |
3回目 |
4回目 |
5回目 |
平均 |
倍率 |
Code 1 |
5.90 |
5.71 |
5.74 |
5.69 |
5.69 |
5.75 |
1.43 |
Code 2 |
4.07 |
4.00 |
4.04 |
4.00 |
4.01 |
4.02 |
- |
■ 考察
Code 1はCode 2に比べて掛け算が2回多いため、計算時間も1.43倍遅いという結果が得ました。