Skip to content

#650 for Chinese #651

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

Merged
merged 1 commit into from
Jan 10, 2017
Merged
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions zh-cn/overviews/collections/performance-characteristics.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ language: zh-cn

## 序列类型的性能特点

| head | tail | apply | update | prepend | append | insert |
|------|------|-------|--------|---------|--------|--------|
| | head | tail | apply | update | prepend | append | insert |
|------|------|------|-------|--------|---------|--------|--------|
|**不可变序列**| | | | | | |
| List | C | C | L | L | C | L | - |
|Stream | C | C | L | L | C | L | - |
|Vector | eC | eC | eC | eC | eC | eC | - |
|Stack | C | C | L | L | C | L | L |
|Queue | aC | aC | L | L | L | C | - |
|Queue | aC | aC | L | L | C | C | - |
|Range | C | C | C | - | - | - | - |
|String | C | L | C | L | L | L | - |
|**可变序列**| | | | | | |
Expand Down