Skip to content

Commit

Permalink
fix invalid code comment (krahets#1405)
Browse files Browse the repository at this point in the history
* Remove invalid comment

* Update time_complexity.md

---------

Co-authored-by: Yudong Jin <[email protected]>
  • Loading branch information
wodray and krahets authored Jun 28, 2024
1 parent 4190eca commit 27d59f6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/chapter_computational_complexity/time_complexity.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
a = a + 1; // 1 ns
a = a * 2; // 10 ns
// 循环 n 次
for (int i = 0; i < n; i++) { // 1 ns ,每轮都要执行 i++
for (int i = 0; i < n; i++) { // 1 ns
cout << 0 << endl; // 5 ns
}
}
Expand All @@ -45,7 +45,7 @@
a = a + 1; // 1 ns
a = a * 2; // 10 ns
// 循环 n 次
for (int i = 0; i < n; i++) { // 1 ns ,每轮都要执行 i++
for (int i = 0; i < n; i++) { // 1 ns
System.out.println(0); // 5 ns
}
}
Expand All @@ -60,7 +60,7 @@
a = a + 1; // 1 ns
a = a * 2; // 10 ns
// 循环 n 次
for (int i = 0; i < n; i++) { // 1 ns ,每轮都要执行 i++
for (int i = 0; i < n; i++) { // 1 ns
Console.WriteLine(0); // 5 ns
}
}
Expand Down Expand Up @@ -105,7 +105,7 @@
a = a + 1; // 1 ns
a = a * 2; // 10 ns
// 循环 n 次
for(let i = 0; i < n; i++) { // 1 ns ,每轮都要执行 i++
for(let i = 0; i < n; i++) { // 1 ns
console.log(0); // 5 ns
}
}
Expand All @@ -120,7 +120,7 @@
a = a + 1; // 1 ns
a = a * 2; // 10 ns
// 循环 n 次
for(let i = 0; i < n; i++) { // 1 ns ,每轮都要执行 i++
for(let i = 0; i < n; i++) { // 1 ns
console.log(0); // 5 ns
}
}
Expand All @@ -135,7 +135,7 @@
a = a + 1; // 1 ns
a = a * 2; // 10 ns
// 循环 n 次
for (int i = 0; i < n; i++) { // 1 ns ,每轮都要执行 i++
for (int i = 0; i < n; i++) { // 1 ns
print(0); // 5 ns
}
}
Expand All @@ -150,7 +150,7 @@
a = a + 1; // 1 ns
a = a * 2; // 10 ns
// 循环 n 次
for _ in 0..n { // 1 ns ,每轮都要执行 i++
for _ in 0..n { // 1 ns
println!("{}", 0); // 5 ns
}
}
Expand All @@ -165,7 +165,7 @@
a = a + 1; // 1 ns
a = a * 2; // 10 ns
// 循环 n 次
for (int i = 0; i < n; i++) { // 1 ns ,每轮都要执行 i++
for (int i = 0; i < n; i++) { // 1 ns
printf("%d", 0); // 5 ns
}
}
Expand All @@ -180,7 +180,7 @@
a = a + 1 // 1 ns
a = a * 2 // 10 ns
// 循环 n 次
for (i in 0..<n) { // 1 ns ,每轮都要执行 i++
for (i in 0..<n) { // 1 ns
println(0) // 5 ns
}
}
Expand Down

0 comments on commit 27d59f6

Please sign in to comment.