mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2025-07-05 16:36:41 +08:00
Add Chinese Translation (#815)
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
# Reversed Linked List Traversal
|
||||
|
||||
_Read this in other languages:_
|
||||
[中文](README.zh-CN.md)
|
||||
|
||||
The task is to traverse the given linked list in reversed order.
|
||||
|
||||
For example for the following linked list:
|
||||
|
19
src/algorithms/linked-list/reverse-traversal/README.zh-CN.md
Normal file
19
src/algorithms/linked-list/reverse-traversal/README.zh-CN.md
Normal file
@ -0,0 +1,19 @@
|
||||
# 链表倒序遍历
|
||||
|
||||
我们的任务是倒序遍历给定的链表
|
||||
|
||||
比如下面的链表
|
||||
|
||||

|
||||
|
||||
遍历的顺序应该是
|
||||
|
||||
```text
|
||||
37 → 99 → 12
|
||||
```
|
||||
|
||||
因为我们每个节点只访问一次,时间复杂度应该是`O(n)`
|
||||
|
||||
## 参考
|
||||
|
||||
- [Wikipedia](https://zh.wikipedia.org/wiki/%E9%93%BE%E8%A1%A8)
|
@ -2,6 +2,7 @@
|
||||
|
||||
_Read this in other languages:_
|
||||
[_Русский_](README.ru-RU.md)
|
||||
[中文](README.zh-CN.md)
|
||||
|
||||
The task is to traverse the given linked list in straight order.
|
||||
|
||||
|
19
src/algorithms/linked-list/traversal/README.zh-CN.md
Normal file
19
src/algorithms/linked-list/traversal/README.zh-CN.md
Normal file
@ -0,0 +1,19 @@
|
||||
# 链表遍历
|
||||
|
||||
我们的任务是顺序遍历给定的链表
|
||||
|
||||
比如下面的链表
|
||||
|
||||

|
||||
|
||||
遍历的顺序应该是
|
||||
|
||||
```text
|
||||
12 → 99 → 37
|
||||
```
|
||||
|
||||
因为我们每个节点只访问一次,时间复杂度应该是`O(n)`
|
||||
|
||||
## 参考
|
||||
|
||||
- [Wikipedia](https://zh.wikipedia.org/wiki/%E9%93%BE%E8%A1%A8)
|
Reference in New Issue
Block a user