|
3 | 3 | [](https://travis-ci.org/trekhleb/javascript-algorithms)
|
4 | 4 | [](https://codecov.io/gh/trekhleb/javascript-algorithms)
|
5 | 5 |
|
6 | | -このリポジトリには、JavaScriptベースの多数のサンプル |
7 | | -一般的なアルゴリズムとデータ構造。 |
| 6 | +このリポジトリには、JavaScriptベースの一般的なアルゴリズムとデータ構造に関する多数のサンプルが含まれています。 |
8 | 7 |
|
9 | | -各アルゴリズムとデータ構造には独自のREADMEがあります |
10 | | -関連する説明と、さらに読むためのリンク (関連YouTubeのビデオも含まれてい). |
| 8 | + |
| 9 | +各アルゴリズムとデータ構造には独自のREADMEがあります。 |
| 10 | +関連する説明と、さらに読むためのリンク (関連YouTubeのビデオ)も含まれています。 |
11 | 11 |
|
12 | 12 | _Read this in other languages:_
|
13 | 13 | [_English_](https://github.com/trekhleb/javascript-algorithms/),
|
@@ -36,10 +36,10 @@ _Read this in other languages:_
|
36 | 36 | * `B` [ヒープ](src/data-structures/heap) - max and min heap versions
|
37 | 37 | * `B` [優先度キュー](src/data-structures/priority-queue)
|
38 | 38 | * `A` [トライ](src/data-structures/trie)
|
39 | | -* `A` [リー](src/data-structures/tree) |
| 39 | +* `A` [ツリー](src/data-structures/tree) |
40 | 40 | * `A` [バイナリ検索ツリー](src/data-structures/tree/binary-search-tree)
|
41 | 41 | * `A` [AVLツリー](src/data-structures/tree/avl-tree)
|
42 | | - * `A` [赤黒のリー](src/data-structures/tree/red-black-tree) |
| 42 | + * `A` [赤黒のツリー](src/data-structures/tree/red-black-tree) |
43 | 43 | * `A` [セグメントツリー](src/data-structures/tree/segment-tree) - with min/max/sum range queries examples
|
44 | 44 | * `A` [フェンウィック・ツリー](src/data-structures/tree/fenwick-tree) (Binary Indexed Tree)
|
45 | 45 | * `A` [グラフ](src/data-structures/graph) (both directed and undirected)
|
|
0 commit comments