mirror of
https://github.com/krahets/hello-algo.git
synced 2026-06-15 22:57:48 +08:00
169 lines
4.4 KiB
C++
169 lines
4.4 KiB
C++
/**
|
|
* File: time_complexity.cpp
|
|
* Created Time: 2022-11-25
|
|
* Author: krahets (krahets@163.com)
|
|
*/
|
|
|
|
#include "../utils/common.hpp"
|
|
|
|
/* 定数階 */
|
|
int constant(int n) {
|
|
int count = 0;
|
|
int size = 100000;
|
|
for (int i = 0; i < size; i++)
|
|
count++;
|
|
return count;
|
|
}
|
|
|
|
/* 線形階 */
|
|
int linear(int n) {
|
|
int count = 0;
|
|
for (int i = 0; i < n; i++)
|
|
count++;
|
|
return count;
|
|
}
|
|
|
|
/* 線形時間(配列を走査) */
|
|
int arrayTraversal(vector<int> &nums) {
|
|
int count = 0;
|
|
// ループ回数は配列長に比例する
|
|
for (int num : nums) {
|
|
count++;
|
|
}
|
|
return count;
|
|
}
|
|
|
|
/* 二乗階 */
|
|
int quadratic(int n) {
|
|
int count = 0;
|
|
// ループ回数はデータサイズ n の二乗に比例する
|
|
for (int i = 0; i < n; i++) {
|
|
for (int j = 0; j < n; j++) {
|
|
count++;
|
|
}
|
|
}
|
|
return count;
|
|
}
|
|
|
|
/* 二次時間(バブルソート) */
|
|
int bubbleSort(vector<int> &nums) {
|
|
int count = 0; // カウンタ
|
|
// 外側のループ:未ソート区間は [0, i]
|
|
for (int i = nums.size() - 1; i > 0; i--) {
|
|
// 内側のループ:未ソート区間 [0, i] の最大要素をその区間の最右端へ交換
|
|
for (int j = 0; j < i; j++) {
|
|
if (nums[j] > nums[j + 1]) {
|
|
// nums[j] と nums[j + 1] を交換
|
|
int tmp = nums[j];
|
|
nums[j] = nums[j + 1];
|
|
nums[j + 1] = tmp;
|
|
count += 3; // 要素交換には 3 回の単位操作が含まれる
|
|
}
|
|
}
|
|
}
|
|
return count;
|
|
}
|
|
|
|
/* 指数時間(ループ実装) */
|
|
int exponential(int n) {
|
|
int count = 0, base = 1;
|
|
// 細胞は各ラウンドで 2 つに分裂し、数列 1, 2, 4, 8, ..., 2^(n-1) を形成する
|
|
for (int i = 0; i < n; i++) {
|
|
for (int j = 0; j < base; j++) {
|
|
count++;
|
|
}
|
|
base *= 2;
|
|
}
|
|
// count = 1 + 2 + 4 + 8 + .. + 2^(n-1) = 2^n - 1
|
|
return count;
|
|
}
|
|
|
|
/* 指数時間(再帰実装) */
|
|
int expRecur(int n) {
|
|
if (n == 1)
|
|
return 1;
|
|
return expRecur(n - 1) + expRecur(n - 1) + 1;
|
|
}
|
|
|
|
/* 対数時間(ループ実装) */
|
|
int logarithmic(int n) {
|
|
int count = 0;
|
|
while (n > 1) {
|
|
n = n / 2;
|
|
count++;
|
|
}
|
|
return count;
|
|
}
|
|
|
|
/* 対数時間(再帰実装) */
|
|
int logRecur(int n) {
|
|
if (n <= 1)
|
|
return 0;
|
|
return logRecur(n / 2) + 1;
|
|
}
|
|
|
|
/* 線形対数時間 */
|
|
int linearLogRecur(int n) {
|
|
if (n <= 1)
|
|
return 1;
|
|
int count = linearLogRecur(n / 2) + linearLogRecur(n / 2);
|
|
for (int i = 0; i < n; i++) {
|
|
count++;
|
|
}
|
|
return count;
|
|
}
|
|
|
|
/* 階乗時間(再帰実装) */
|
|
int factorialRecur(int n) {
|
|
if (n == 0)
|
|
return 1;
|
|
int count = 0;
|
|
// 1個から n 個に分裂
|
|
for (int i = 0; i < n; i++) {
|
|
count += factorialRecur(n - 1);
|
|
}
|
|
return count;
|
|
}
|
|
|
|
/* Driver Code */
|
|
int main() {
|
|
// n を変えて実行し、各計算量で操作回数がどう変化するかを確認できる
|
|
int n = 8;
|
|
cout << "入力データサイズ n = " << n << endl;
|
|
|
|
int count = constant(n);
|
|
cout << "定数オーダーの操作回数 = " << count << endl;
|
|
|
|
count = linear(n);
|
|
cout << "線形オーダーの操作回数 = " << count << endl;
|
|
vector<int> arr(n);
|
|
count = arrayTraversal(arr);
|
|
cout << "線形オーダー(配列走査)の操作回数 = " << count << endl;
|
|
|
|
count = quadratic(n);
|
|
cout << "二乗オーダーの操作回数 = " << count << endl;
|
|
vector<int> nums(n);
|
|
for (int i = 0; i < n; i++)
|
|
nums[i] = n - i; // [n,n-1,...,2,1]
|
|
count = bubbleSort(nums);
|
|
cout << "二乗オーダー(バブルソート)の操作回数 = " << count << endl;
|
|
|
|
count = exponential(n);
|
|
cout << "指数オーダー(ループ実装)の操作回数 = " << count << endl;
|
|
count = expRecur(n);
|
|
cout << "指数オーダー(再帰実装)の操作回数 = " << count << endl;
|
|
|
|
count = logarithmic(n);
|
|
cout << "対数オーダー(ループ実装)の操作回数 = " << count << endl;
|
|
count = logRecur(n);
|
|
cout << "対数オーダー(再帰実装)の操作回数 = " << count << endl;
|
|
|
|
count = linearLogRecur(n);
|
|
cout << "線形対数オーダー(再帰実装)の操作回数 = " << count << endl;
|
|
|
|
count = factorialRecur(n);
|
|
cout << "階乗オーダー(再帰実装)の操作回数 = " << count << endl;
|
|
|
|
return 0;
|
|
}
|