mirror of
https://github.com/krahets/hello-algo.git
synced 2026-09-18 20:47:15 +00:00
Update docs/chapter_computational_complexity/time_complexity.md
Co-authored-by: Justin Tse <xiefahit@gmail.com>
This commit is contained in:
@@ -1013,7 +1013,7 @@ $$
|
|||||||
|
|
||||||
```typescript title="time_complexity.ts"
|
```typescript title="time_complexity.ts"
|
||||||
/* 线性阶(遍历数组) */
|
/* 线性阶(遍历数组) */
|
||||||
function arrayTraversal(nums: number[]) {
|
function arrayTraversal(nums: number[]): number {
|
||||||
let count = 0;
|
let count = 0;
|
||||||
// 循环次数与数组长度成正比
|
// 循环次数与数组长度成正比
|
||||||
for (let i = 0; i < nums.length; i++) {
|
for (let i = 0; i < nums.length; i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user