Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

code: added Typescript and Javascript examples #196

Merged
merged 31 commits into from
Jan 6, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
c94101a
docs: added Typescript and Javascript examples
RiverTwilight Jan 1, 2023
3f00aa3
code: added code for time complexity chapter
RiverTwilight Jan 2, 2023
2bd24e6
code: added doc code
RiverTwilight Jan 2, 2023
8c73625
code: transcribe time_complexity.js
RiverTwilight Jan 2, 2023
f83dcce
fix: doesnt return anything
RiverTwilight Jan 2, 2023
6e2412f
lint: code lint
RiverTwilight Jan 2, 2023
db2a91b
lint: remove class and main
RiverTwilight Jan 2, 2023
d3e15a8
lint: var to let
RiverTwilight Jan 2, 2023
621fcb7
lint: switch indent type
RiverTwilight Jan 2, 2023
63cd3e4
lint: added prettier config and switch indent type
RiverTwilight Jan 2, 2023
92c8d34
lint: remove extra indent
RiverTwilight Jan 2, 2023
23b4aa1
code: added scripts to the doc
RiverTwilight Jan 2, 2023
36e8335
lint: added missing comment
RiverTwilight Jan 3, 2023
b5c9db9
Update docs/chapter_computational_complexity/time_complexity.md
krahets Jan 4, 2023
abdf1f3
Update codes/javascript/chapter_computational_complexity/time_complex…
krahets Jan 4, 2023
c5a9eea
Update codes/typescript/chapter_computational_complexity/time_complex…
krahets Jan 4, 2023
a29a584
Update codes/typescript/chapter_computational_complexity/time_complex…
krahets Jan 4, 2023
d5969e4
Update docs/chapter_computational_complexity/time_complexity.md
krahets Jan 4, 2023
3906c3d
Update docs/chapter_computational_complexity/time_complexity.md
krahets Jan 4, 2023
9f7a9fd
Update codes/typescript/chapter_computational_complexity/time_complex…
krahets Jan 4, 2023
2acf85a
Update docs/chapter_computational_complexity/time_complexity.md
krahets Jan 4, 2023
3fa04ae
Update docs/chapter_computational_complexity/time_complexity.md
krahets Jan 4, 2023
03aeda8
Update docs/chapter_computational_complexity/time_complexity.md
krahets Jan 4, 2023
51004b8
Apply suggestions from code review
krahets Jan 4, 2023
7cd1347
code(js): worst best time complexity
RiverTwilight Jan 5, 2023
8031e0e
lint: added missing keyword
RiverTwilight Jan 5, 2023
c53f64d
code(ts): worst best time complexity
RiverTwilight Jan 5, 2023
21096c8
lint: added comments
RiverTwilight Jan 5, 2023
e96272a
Apply suggestions from code review
krahets Jan 5, 2023
52927ca
fix: change shuffle algo in the doc
RiverTwilight Jan 6, 2023
5a24254
lint
RiverTwilight Jan 6, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
159 changes: 159 additions & 0 deletions codes/javascript/chapter_computational_complexity/time_complexity.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
/**
* File: time_complexity.js
* Created Time: 2023-01-02
* Author: RiverTwilight (contact@rene.wang)
*/

class time_complexity {
krahets marked this conversation as resolved.
Show resolved Hide resolved
/* 常数阶 */
constant(n) {
var count = 0;
krahets marked this conversation as resolved.
Show resolved Hide resolved
const size = 100000;
for (var i = 0; i < size; i++) count++;
krahets marked this conversation as resolved.
Show resolved Hide resolved
return count;
}

/* 线性阶 */
linear(n) {
var count = 0;
for (var i = 0; i < n; i++) count++;
return count;
}

/* 线性阶(遍历数组) */
arrayTraversal(nums) {
var count = 0;
// 循环次数与数组长度成正比
for (var i = 0; i < nums.length; i++) {
count++;
}
return count;
}

/* 平方阶 */
quadratic(n) {
var count = 0;
// 循环次数与数组长度成平方关系
for (var i = 0; i < n; i++) {
for (let j = 0; j < n; j++) {
count++;
}
}
return count;
}

/* 平方阶(冒泡排序) */
bubbleSort(nums) {
var count = 0; // 计数器
// 外循环:待排序元素数量为 n-1, n-2, ..., 1
for (var i = nums.length - 1; i > 0; i--) {
// 内循环:冒泡操作
for (let j = 0; j < i; j++) {
if (nums[j] > nums[j + 1]) {
// 交换 nums[j] 与 nums[j + 1]
let tmp = nums[j];
nums[j] = nums[j + 1];
nums[j + 1] = tmp;
count += 3; // 元素交换包含 3 个单元操作
}
}
}
return count;
}

/* 指数阶(循环实现) */
exponential(n) {
var count = 0,
base = 1;
// cell 每轮一分为二,形成数列 1, 2, 4, 8, ..., 2^(n-1)
for (var i = 0; i < n; i++) {
for (let j = 0; j < base; j++) {
count++;
}
base *= 2;
}
// count = 1 + 2 + 4 + 8 + .. + 2^(n-1) = 2^n - 1
return count;
}

/* 指数阶(递归实现) */
expRecur(n) {
if (n == 1) return 1;
return this.expRecur(n - 1) + this.expRecur(n - 1) + 1;
}

/* 对数阶(循环实现) */
logarithmic(n) {
var count = 0;
while (n > 1) {
n = n / 2;
count++;
}
return count;
}

/* 对数阶(递归实现) */
logRecur(n) {
if (n <= 1) return 0;
return this.logRecur(n / 2) + 1;
}

/* 线性对数阶 */
linearLogRecur(n) {
if (n <= 1) return 1;
var count = this.linearLogRecur(n / 2) + this.linearLogRecur(n / 2);
for (var i = 0; i < n; i++) {
count++;
}
return count;
}

/* 阶乘阶(递归实现) */
factorialRecur(n) {
if (n == 0) return 1;
var count = 0;
// 从 1 个分裂出 n 个
for (var i = 0; i < n; i++) {
count += this.factorialRecur(n - 1);
}
return count;
}
}

(function main() {
krahets marked this conversation as resolved.
Show resolved Hide resolved
var test = new time_complexity();

var n = 8;
console.log("输入数据大小 n = " + n);

var count = test.constant(n);
console.log("常数阶的计算操作数量 = " + count);

count = test.linear(n);
console.log("线性阶的计算操作数量 = " + count);
count = test.arrayTraversal(new Array(n));
console.log("线性阶(遍历数组)的计算操作数量 = " + count);

count = test.quadratic(n);
console.log("平方阶的计算操作数量 = " + count);
var nums = new Array(n);
for (var i = 0; i < n; i++) nums[i] = n - i; // [n,n-1,...,2,1]
count = test.bubbleSort(nums);
console.log("平方阶(冒泡排序)的计算操作数量 = " + count);

count = test.exponential(n);
console.log("指数阶(循环实现)的计算操作数量 = " + count);
count = test.expRecur(n);
console.log("指数阶(递归实现)的计算操作数量 = " + count);

count = test.logarithmic(n);
console.log("对数阶(循环实现)的计算操作数量 = " + count);
count = test.logRecur(n);
console.log("对数阶(递归实现)的计算操作数量 = " + count);

count = test.linearLogRecur(n);
console.log("线性对数阶(递归实现)的计算操作数量 = " + count);

count = test.factorialRecur(n);
console.log("阶乘阶(递归实现)的计算操作数量 = " + count);
})();
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**
* File: time_complexity.js
* Created Time: 2023-01-02
* Author: RiverTwilight (contact@rene.wang)
*/
krahets marked this conversation as resolved.
Show resolved Hide resolved
Loading