Fix japanese-translation typo and awkward grammer (#296)

This commit is contained in:
oimo23 2019-03-08 20:12:10 +09:00 committed by Oleksii Trekhleb
parent b87e326fcf
commit a1d218dd29

View File

@ -3,11 +3,11 @@
[![Build Status](https://travis-ci.org/trekhleb/javascript-algorithms.svg?branch=master)](https://travis-ci.org/trekhleb/javascript-algorithms) [![Build Status](https://travis-ci.org/trekhleb/javascript-algorithms.svg?branch=master)](https://travis-ci.org/trekhleb/javascript-algorithms)
[![codecov](https://codecov.io/gh/trekhleb/javascript-algorithms/branch/master/graph/badge.svg)](https://codecov.io/gh/trekhleb/javascript-algorithms) [![codecov](https://codecov.io/gh/trekhleb/javascript-algorithms/branch/master/graph/badge.svg)](https://codecov.io/gh/trekhleb/javascript-algorithms)
このリポジトリには、JavaScriptベースの多数のサンプル このリポジトリには、JavaScriptベースの一般的なアルゴリズムとデータ構造に関する多数のサンプルが含まれています。
一般的なアルゴリズムとデータ構造。
各アルゴリズムとデータ構造には独自のREADMEがあります
関連する説明と、さらに読むためのリンク (関連YouTubeのビデオも含まれてい). 各アルゴリズムとデータ構造には独自のREADMEがあります。
関連する説明と、さらに読むためのリンク (関連YouTubeのビデオ)も含まれています。
_Read this in other languages:_ _Read this in other languages:_
[_English_](https://github.com/trekhleb/javascript-algorithms/), [_English_](https://github.com/trekhleb/javascript-algorithms/),
@ -39,7 +39,7 @@ _Read this in other languages:_
* `A` [ツリー](src/data-structures/tree) * `A` [ツリー](src/data-structures/tree)
* `A` [バイナリ検索ツリー](src/data-structures/tree/binary-search-tree) * `A` [バイナリ検索ツリー](src/data-structures/tree/binary-search-tree)
* `A` [AVLツリー](src/data-structures/tree/avl-tree) * `A` [AVLツリー](src/data-structures/tree/avl-tree)
* `A` [赤黒のリー](src/data-structures/tree/red-black-tree) * `A` [赤黒のリー](src/data-structures/tree/red-black-tree)
* `A` [セグメントツリー](src/data-structures/tree/segment-tree) - with min/max/sum range queries examples * `A` [セグメントツリー](src/data-structures/tree/segment-tree) - with min/max/sum range queries examples
* `A` [フェンウィック・ツリー](src/data-structures/tree/fenwick-tree) (Binary Indexed Tree) * `A` [フェンウィック・ツリー](src/data-structures/tree/fenwick-tree) (Binary Indexed Tree)
* `A` [グラフ](src/data-structures/graph) (both directed and undirected) * `A` [グラフ](src/data-structures/graph) (both directed and undirected)