Add dart chapter_computational_complexity (#363)
* add dart chapter_array_and_linkedlist * update my_list.dart * update chapter_array_and_linkedlist * Update my_list.dart * Update array.dart * Update file name * Add chapter_computational_complexity * Add chapter_computational_complexity * add space_complexity class and format code * remove class --------- Co-authored-by: huangjianqing <huangjianqing@52tt.com> Co-authored-by: Yudong Jin <krahets@163.com>pull/371/head
parent
6812b4f5c5
commit
7b9c552273
@ -0,0 +1,47 @@
|
|||||||
|
/**
|
||||||
|
* File: leetcode_two_sum.dart
|
||||||
|
* Created Time: 2023-2-11
|
||||||
|
* Author: Jefferson (JeffersonHuang77@gmail.com)
|
||||||
|
*/
|
||||||
|
|
||||||
|
import 'dart:collection';
|
||||||
|
|
||||||
|
/* 方法一: 暴力枚举 */
|
||||||
|
List<int> twoSumBruteForce(List<int> nums, int target) {
|
||||||
|
int size = nums.length;
|
||||||
|
for (var i = 0; i < size - 1; i++) {
|
||||||
|
for (var j = i + 1; j < size; j++) {
|
||||||
|
if (nums[i] + nums[j] == target) return [i, j];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return [0];
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 方法二: 辅助哈希表 */
|
||||||
|
List<int> twoSumHashTable(List<int> nums, int target) {
|
||||||
|
int size = nums.length;
|
||||||
|
Map<int, int> dic = HashMap();
|
||||||
|
for (var i = 0; i < size; i++) {
|
||||||
|
if (dic.containsKey(target - nums[i])) {
|
||||||
|
return [dic[target - nums[i]]!, i];
|
||||||
|
}
|
||||||
|
dic.putIfAbsent(nums[i], () => i);
|
||||||
|
}
|
||||||
|
return [0];
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Driver Code */
|
||||||
|
int main() {
|
||||||
|
// ======= Test Case =======
|
||||||
|
List<int> nums = [2, 7, 11, 15];
|
||||||
|
int target = 9;
|
||||||
|
|
||||||
|
// ====== Driver Code ======
|
||||||
|
// 方法一
|
||||||
|
List<int> res = twoSumBruteForce(nums, target);
|
||||||
|
print('方法一 res = $res');
|
||||||
|
// 方法二
|
||||||
|
res = twoSumHashTable(nums, target);
|
||||||
|
print('方法二 res = $res');
|
||||||
|
return 0;
|
||||||
|
}
|
@ -0,0 +1,106 @@
|
|||||||
|
/**
|
||||||
|
* File: space_complexity.dart
|
||||||
|
* Created Time: 2023-2-12
|
||||||
|
* Author: Jefferson (JeffersonHuang77@gmail.com)
|
||||||
|
*/
|
||||||
|
|
||||||
|
import 'dart:collection';
|
||||||
|
import '../utils/list_node.dart';
|
||||||
|
import '../utils/print_util.dart';
|
||||||
|
import '../utils/tree_node.dart';
|
||||||
|
|
||||||
|
/* 函数 */
|
||||||
|
int function() {
|
||||||
|
// do something
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 常数阶 */
|
||||||
|
void constant(int n) {
|
||||||
|
// 常量、变量、对象占用 O(1) 空间
|
||||||
|
final int a = 0;
|
||||||
|
int b = 0;
|
||||||
|
|
||||||
|
List<int> nums = List.filled(10000, 0);
|
||||||
|
// 循环中的变量占用 O(1) 空间
|
||||||
|
for (var i = 0; i < n; i++) {
|
||||||
|
int c = 0;
|
||||||
|
}
|
||||||
|
// 循环中的函数占用 O(1) 空间
|
||||||
|
for (var i = 0; i < n; i++) {
|
||||||
|
function();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 线性阶 */
|
||||||
|
void linear(int n) {
|
||||||
|
// 长度为 n 的数组占用 O(n) 空间
|
||||||
|
List<int> nums = List.filled(n, 0);
|
||||||
|
// 长度为 n 的列表占用 O(n) 空间
|
||||||
|
List<ListNode> nodes = [];
|
||||||
|
for (var i = 0; i < n; i++) {
|
||||||
|
nodes.add(ListNode(i));
|
||||||
|
}
|
||||||
|
// 长度为 n 的哈希表占用 O(n) 空间
|
||||||
|
Map<int, String> map = HashMap();
|
||||||
|
for (var i = 0; i < n; i++) {
|
||||||
|
map.putIfAbsent(i, () => i.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 线性阶(递归实现) */
|
||||||
|
void linearRecur(int n) {
|
||||||
|
print('递归 n = $n');
|
||||||
|
if (n == 1) return;
|
||||||
|
linearRecur(n - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 平方阶 */
|
||||||
|
void quadratic(int n) {
|
||||||
|
// 矩阵占用 O(n^2) 空间
|
||||||
|
List<List<int>> numMatrix = List.generate(n, (_) => List.filled(n, 0));
|
||||||
|
// 二维列表占用 O(n^2) 空间
|
||||||
|
List<List<int>> numList = [];
|
||||||
|
|
||||||
|
for (var i = 0; i < n; i++) {
|
||||||
|
List<int> tmp = [];
|
||||||
|
for (int j = 0; j < n; j++) {
|
||||||
|
tmp.add(0);
|
||||||
|
}
|
||||||
|
numList.add(tmp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 平方阶(递归实现) */
|
||||||
|
int quadraticRecur(int n) {
|
||||||
|
if (n <= 0) return 0;
|
||||||
|
List<int> nums = List.filled(n, 0);
|
||||||
|
print('递归 n = $n 中的长度 nums 长度 = ${nums.length}');
|
||||||
|
return quadraticRecur(n - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 指数阶(建立满二叉树) */
|
||||||
|
TreeNode? buildTree(int n) {
|
||||||
|
if (n == 0) return null;
|
||||||
|
TreeNode root = TreeNode(n);
|
||||||
|
root.left = buildTree(n - 1);
|
||||||
|
root.right = buildTree(n - 1);
|
||||||
|
return root;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Driver Code */
|
||||||
|
int main() {
|
||||||
|
int n = 5;
|
||||||
|
// 常数阶
|
||||||
|
constant(n);
|
||||||
|
// 线性阶
|
||||||
|
linear(n);
|
||||||
|
linearRecur(n);
|
||||||
|
// 平方阶
|
||||||
|
quadratic(n);
|
||||||
|
quadraticRecur(n);
|
||||||
|
// 指数阶
|
||||||
|
TreeNode? root = buildTree(n);
|
||||||
|
printTree(root);
|
||||||
|
return 0;
|
||||||
|
}
|
@ -1,21 +0,0 @@
|
|||||||
/**
|
|
||||||
* File: PrintUtil
|
|
||||||
* Created Time: 2023-01-23
|
|
||||||
* Author: Jefferson (JeffersonHuang77@gmail.com)
|
|
||||||
*/
|
|
||||||
|
|
||||||
import 'ListNode.dart';
|
|
||||||
|
|
||||||
class PrintUtil {
|
|
||||||
|
|
||||||
void printLinkedList(ListNode? head) {
|
|
||||||
List<String> list = [];
|
|
||||||
|
|
||||||
while (head != null) {
|
|
||||||
list.add('${head.val}');
|
|
||||||
head = head.next;
|
|
||||||
}
|
|
||||||
|
|
||||||
print(list.join(' -> '));
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,72 @@
|
|||||||
|
/**
|
||||||
|
* File: PrintUtil
|
||||||
|
* Created Time: 2023-01-23
|
||||||
|
* Author: Jefferson (JeffersonHuang77@gmail.com)
|
||||||
|
*/
|
||||||
|
import 'dart:io';
|
||||||
|
|
||||||
|
import 'list_node.dart';
|
||||||
|
import 'tree_node.dart';
|
||||||
|
|
||||||
|
class Trunk {
|
||||||
|
Trunk? prev;
|
||||||
|
String str;
|
||||||
|
|
||||||
|
Trunk(this.prev, this.str);
|
||||||
|
}
|
||||||
|
|
||||||
|
void printLinkedList(ListNode? head) {
|
||||||
|
List<String> list = [];
|
||||||
|
|
||||||
|
while (head != null) {
|
||||||
|
list.add('${head.val}');
|
||||||
|
head = head.next;
|
||||||
|
}
|
||||||
|
|
||||||
|
print(list.join(' -> '));
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* Print a binary tree
|
||||||
|
* @param root
|
||||||
|
* @param prev
|
||||||
|
* @param isLeft
|
||||||
|
*/
|
||||||
|
|
||||||
|
void printTree(TreeNode? root, [Trunk? prev = null, bool isLeft = false]) {
|
||||||
|
if (root == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String prev_str = ' ';
|
||||||
|
Trunk trunk = Trunk(prev, prev_str);
|
||||||
|
|
||||||
|
printTree(root.right, trunk, true);
|
||||||
|
|
||||||
|
if (prev == null) {
|
||||||
|
trunk.str = '---';
|
||||||
|
} else if (isLeft) {
|
||||||
|
trunk.str = '/---';
|
||||||
|
prev_str = ' |';
|
||||||
|
} else {
|
||||||
|
trunk.str = '\\---';
|
||||||
|
prev.str = prev_str;
|
||||||
|
}
|
||||||
|
showTrunks(trunk);
|
||||||
|
print(' ${root.val}');
|
||||||
|
|
||||||
|
if (prev != null) {
|
||||||
|
prev.str = prev_str;
|
||||||
|
}
|
||||||
|
trunk.str = ' |';
|
||||||
|
|
||||||
|
printTree(root.left, trunk, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
void showTrunks(Trunk? p) {
|
||||||
|
if (p == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
showTrunks(p.prev);
|
||||||
|
stdout.write(p.str);
|
||||||
|
}
|
@ -0,0 +1,69 @@
|
|||||||
|
/**
|
||||||
|
* File: tree_node.dart
|
||||||
|
* Created Time: 2023-2-12
|
||||||
|
* Author: Jefferson (JeffersonHuang77@gmail.com)
|
||||||
|
*/
|
||||||
|
|
||||||
|
import 'dart:collection';
|
||||||
|
|
||||||
|
class TreeNode {
|
||||||
|
late int val; // 结点值
|
||||||
|
late int height; // 结点高度
|
||||||
|
late TreeNode? left; // 左子结点引用
|
||||||
|
late TreeNode? right; // 右子结点引用
|
||||||
|
|
||||||
|
TreeNode(int x) {
|
||||||
|
val = x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generate a binary tree given an array
|
||||||
|
* @param list
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
TreeNode? listToTree(List<int> list) {
|
||||||
|
int size = list.length;
|
||||||
|
if (size == 0) return null;
|
||||||
|
|
||||||
|
TreeNode root = TreeNode(list[0]);
|
||||||
|
Queue<TreeNode?> queue = Queue();
|
||||||
|
queue.add(root);
|
||||||
|
int i = 0;
|
||||||
|
while (!queue.isEmpty) {
|
||||||
|
TreeNode? node = queue.first;
|
||||||
|
queue.removeFirst();
|
||||||
|
if (++i >= size) break;
|
||||||
|
node?.left = TreeNode(list[i]);
|
||||||
|
queue.add(node?.left);
|
||||||
|
if (++i >= size) break;
|
||||||
|
node?.left = TreeNode(list[i]);
|
||||||
|
queue.add(node?.right);
|
||||||
|
}
|
||||||
|
return root;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serialize a binary tree to a list
|
||||||
|
* @param root
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<int?> treeToList(TreeNode? root) {
|
||||||
|
List<int?> list = [];
|
||||||
|
if (root == null) return list;
|
||||||
|
Queue<TreeNode?> queue = Queue();
|
||||||
|
queue.add(root);
|
||||||
|
|
||||||
|
while (!queue.isEmpty) {
|
||||||
|
TreeNode? node = queue.first;
|
||||||
|
queue.removeFirst();
|
||||||
|
if (node != null) {
|
||||||
|
list.add(node.val);
|
||||||
|
queue.add(node.left);
|
||||||
|
queue.add(node.right);
|
||||||
|
} else {
|
||||||
|
list.add(null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return list;
|
||||||
|
}
|
Loading…
Reference in new issue