mirror of
https://github.com/krahets/hello-algo.git
synced 2026-06-15 22:57:48 +08:00
111 lines
3.0 KiB
Java
111 lines
3.0 KiB
Java
/**
|
|
* File: space_complexity.java
|
|
* Created Time: 2022-11-25
|
|
* Author: krahets (krahets@163.com)
|
|
*/
|
|
|
|
package chapter_computational_complexity;
|
|
|
|
import utils.*;
|
|
import java.util.*;
|
|
|
|
public class space_complexity {
|
|
/* 関数 */
|
|
static int function() {
|
|
// 何らかの処理を行う
|
|
return 0;
|
|
}
|
|
|
|
/* 定数階 */
|
|
static void constant(int n) {
|
|
// 定数、変数、オブジェクトは O(1) の空間を占める
|
|
final int a = 0;
|
|
int b = 0;
|
|
int[] nums = new int[10000];
|
|
ListNode node = new ListNode(0);
|
|
// ループ内の変数は O(1) の空間を占める
|
|
for (int i = 0; i < n; i++) {
|
|
int c = 0;
|
|
}
|
|
// ループ内の関数は O(1) の空間を占める
|
|
for (int i = 0; i < n; i++) {
|
|
function();
|
|
}
|
|
}
|
|
|
|
/* 線形階 */
|
|
static void linear(int n) {
|
|
// 長さ n の配列は O(n) の空間を使用
|
|
int[] nums = new int[n];
|
|
// 長さ n のリストは O(n) の空間を使用
|
|
List<ListNode> nodes = new ArrayList<>();
|
|
for (int i = 0; i < n; i++) {
|
|
nodes.add(new ListNode(i));
|
|
}
|
|
// 長さ n のハッシュテーブルは O(n) の空間を使用
|
|
Map<Integer, String> map = new HashMap<>();
|
|
for (int i = 0; i < n; i++) {
|
|
map.put(i, String.valueOf(i));
|
|
}
|
|
}
|
|
|
|
/* 線形時間(再帰実装) */
|
|
static void linearRecur(int n) {
|
|
System.out.println("再帰 n = " + n);
|
|
if (n == 1)
|
|
return;
|
|
linearRecur(n - 1);
|
|
}
|
|
|
|
/* 二乗階 */
|
|
static void quadratic(int n) {
|
|
// 行列は O(n^2) の空間を使用する
|
|
int[][] numMatrix = new int[n][n];
|
|
// 二次元リストは O(n^2) の空間を使用
|
|
List<List<Integer>> numList = new ArrayList<>();
|
|
for (int i = 0; i < n; i++) {
|
|
List<Integer> tmp = new ArrayList<>();
|
|
for (int j = 0; j < n; j++) {
|
|
tmp.add(0);
|
|
}
|
|
numList.add(tmp);
|
|
}
|
|
}
|
|
|
|
/* 二次時間(再帰実装) */
|
|
static int quadraticRecur(int n) {
|
|
if (n <= 0)
|
|
return 0;
|
|
// 配列 nums の長さは n, n-1, ..., 2, 1
|
|
int[] nums = new int[n];
|
|
System.out.println("再帰 n = " + n + " における nums の長さ = " + nums.length);
|
|
return quadraticRecur(n - 1);
|
|
}
|
|
|
|
/* 指数時間(完全二分木の構築) */
|
|
static TreeNode buildTree(int n) {
|
|
if (n == 0)
|
|
return null;
|
|
TreeNode root = new TreeNode(0);
|
|
root.left = buildTree(n - 1);
|
|
root.right = buildTree(n - 1);
|
|
return root;
|
|
}
|
|
|
|
/* Driver Code */
|
|
public static void main(String[] args) {
|
|
int n = 5;
|
|
// 定数階
|
|
constant(n);
|
|
// 線形階
|
|
linear(n);
|
|
linearRecur(n);
|
|
// 二乗階
|
|
quadratic(n);
|
|
quadraticRecur(n);
|
|
// 指数オーダー
|
|
TreeNode root = buildTree(n);
|
|
PrintUtil.printTree(root);
|
|
}
|
|
}
|