Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd885fd2

Browse files
committed
Add Japanese translation.
1 parent968335c commitd885fd2

9 files changed

+19
-12
lines changed

‎README.es-ES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ _Léelo en otros idiomas:_
1414
[_简体中文_](README.zh-CN.md),
1515
[_繁體中文_](README.zh-TW.md),
1616
[_한국어_](README.ko-KR.md),
17+
[_日本人_](README.ja-JP.md),
1718
[_Polski_](README.pl-PL.md),
1819
[_Français_](README.fr-FR.md),
1920
[_Português_](README.pt-BR.md)

‎README.fr-FR.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ _Lisez ceci dans d'autres langues:_
1515
[_简体中文_](README.zh-CN.md),
1616
[_繁體中文_](README.zh-TW.md),
1717
[_한국어_](README.ko-KR.md),
18+
[_日本人_](README.ja-JP.md),
1819
[_Polski_](README.pl-PL.md),
1920
[_Español_](README.es-ES.md),
2021
[_Português_](README.pt-BR.md)

‎README.ja-JP.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Build Status](https://travis-ci.org/trekhleb/javascript-algorithms.svg?branch=master)](https://travis-ci.org/trekhleb/javascript-algorithms)
44
[![codecov](https://codecov.io/gh/trekhleb/javascript-algorithms/branch/master/graph/badge.svg)](https://codecov.io/gh/trekhleb/javascript-algorithms)
55

6-
76
このリポジトリには、JavaScriptベースの多数のサンプル
87
一般的なアルゴリズムとデータ構造。
98

@@ -72,7 +71,7 @@ _Read this in other languages:_
7271
*`A`[整数パーティション](src/algorithms/math/integer-partition)
7372
*`A`[Liu Hui π アルゴリズム](src/algorithms/math/liu-hui) - N-gonsに基づく近似π計算
7473
*`A`[離散フーリエ変換](src/algorithms/math/fourier-transform) - 時間(信号)の関数をそれを構成する周波数に分解する
75-
***セット**
74+
***セット**
7675
*`B`[デカルト積](src/algorithms/sets/cartesian-product) - 複数の積の積
7776
*`B`[Fisher–Yates Shuffle](src/algorithms/sets/fisher-yates) - 有限シーケンスのランダム置換
7877
*`A`[パワーセット](src/algorithms/sets/power-set) - セットのすべてのサブセット(ビットごとのソリューションとバックトラッキングソリューション)
@@ -84,20 +83,20 @@ _Read this in other languages:_
8483
*`A`[ナップザック問題](src/algorithms/sets/knapsack-problem) - 「0/1」と「非結合」問題
8584
*`A`[最大サブアレイ](src/algorithms/sets/maximum-subarray) - 「ブルートフォース」と「ダイナミックプログラミング」(Kadane's版)
8685
*`A`[組み合わせ合計](src/algorithms/sets/combination-sum) - 特定の合計を構成するすべての組み合わせを見つける
87-
***文字列**
86+
***文字列**
8887
*`B`[ハミング距離](src/algorithms/string/hamming-distance) - シンボルが異なる位置の数
8988
*`A`[レーベンシュタイン距離](src/algorithms/string/levenshtein-distance) - 2つのシーケンス間の最小編集距離
9089
*`A`[Knuth-Morris-Prattアルゴリズム](src/algorithms/string/knuth-morris-pratt) (KMP Algorithm) - 部分文字列検索 (pattern matching)
9190
*`A`[Z アルゴリズム](src/algorithms/string/z-algorithm) - 部分文字列検索 (pattern matching)
9291
*`A`[Rabin Karpアルゴリズム](src/algorithms/string/rabin-karp) - 部分文字列検索
9392
*`A`[最長共通部分文字列](src/algorithms/string/longest-common-substring)
9493
*`A`[正規表現マッチング](src/algorithms/string/regular-expression-matching)
95-
***検索**
94+
***検索**
9695
*`B`[リニアサーチ](src/algorithms/search/linear-search)
9796
*`B`[ジャンプ検索](src/algorithms/search/jump-search) (or Block Search) - ソートされた配列で検索
9897
*`B`[バイナリ検索](src/algorithms/search/binary-search) - ソートされた配列で検索
9998
*`B`[補間探索](src/algorithms/search/interpolation-search) - 一様分布のソート配列で検索する
100-
***並べ替え**
99+
***並べ替え**
101100
*`B`[バブルソート](src/algorithms/sorting/bubble-sort)
102101
*`B`[選択ソート](src/algorithms/sorting/selection-sort)
103102
*`B`[挿入ソート](src/algorithms/sorting/insertion-sort)
@@ -107,13 +106,13 @@ _Read this in other languages:_
107106
*`B`[シェルソート](src/algorithms/sorting/shell-sort)
108107
*`B`[並べ替えを数える](src/algorithms/sorting/counting-sort)
109108
*`B`[基数ソート](src/algorithms/sorting/radix-sort)
110-
***リンクされたリスト**
109+
***リンクされたリスト**
111110
*`B`[ストレートトラバーサル](src/algorithms/linked-list/traversal)
112111
*`B`[逆方向のトラバーサル](src/algorithms/linked-list/reverse-traversal)
113-
***ツリー**
112+
***ツリー**
114113
*`B`[深度優先検索](src/algorithms/tree/depth-first-search) (DFS)
115114
*`B`[幅優先検索](src/algorithms/tree/breadth-first-search) (BFS)
116-
***グラフ**
115+
***グラフ**
117116
*`B`[深度優先検索](src/algorithms/graph/depth-first-search) (DFS)
118117
*`B`[幅優先検索](src/algorithms/graph/breadth-first-search) (BFS)
119118
*`B`[Kruskalのアルゴリズム](src/algorithms/graph/kruskal) - 重み付き無向グラフの最小スパニングツリー(MST)の発見
@@ -129,9 +128,9 @@ _Read this in other languages:_
129128
*`A`[ハミルトニアンサイクル](src/algorithms/graph/hamiltonian-cycle) - すべての頂点を正確に1回訪問する
130129
*`A`[強連結成分](src/algorithms/graph/strongly-connected-components) - コサラジュのアルゴリズム
131130
*`A`[トラベリングセールスマン問題](src/algorithms/graph/travelling-salesman) - 各都市を訪問し、起点都市に戻る最短経路
132-
***暗号**
131+
***暗号**
133132
*`B`[多項式ハッシュ](src/algorithms/cryptography/polynomial-hash) - 関数多項式に基づくハッシュ関数
134-
***未分類**
133+
***未分類**
135134
*`B`[ハノイの塔](src/algorithms/uncategorized/hanoi-tower)
136135
*`B`[正方行列回転](src/algorithms/uncategorized/square-matrix-rotation) - インプレイスアルゴリズム
137136
*`B`[ジャンプゲーム](src/algorithms/uncategorized/jump-game) - バックトラック、ダイナミックプログラミング(トップダウン+ボトムアップ)、欲張りの例
@@ -187,7 +186,7 @@ _Read this in other languages:_
187186
*`A`[Bellman-Fordアルゴリズム](src/algorithms/graph/bellman-ford) - すべてのグラフ頂点への最短経路を見つける
188187
*`A`[Floyd-Warshallアルゴリズム](src/algorithms/graph/floyd-warshall) - すべての頂点ペア間の最短経路を見つける
189188
*`A`[正規表現マッチング](src/algorithms/string/regular-expression-matching)
190-
***バックトラッキング** - ブルートフォースと同様に、可能なすべてのソリューションを生成しようとしますが、
189+
***バックトラッキング** - ブルートフォースと同様に、可能なすべてのソリューションを生成しようとしますが、
191190
次のソリューションを生成するたびにすべての条件を満たすかどうかをテストし、それ以降は引き続きソリューションを生成します。
192191
それ以外の場合は、バックトラックして、解決策を見つける別の経路に進みます。
193192
通常、状態空間のDFSトラバーサルが使用されています。
@@ -289,4 +288,4 @@ npm test -- 'playground'
289288
|**Quick sort**| n&nbsp;log(n)| n&nbsp;log(n)| n<sup>2</sup>| log(n)| No| Quicksort is usually done in-place with O(log(n)) stack space|
290289
|**Shell sort**| n&nbsp;log(n)| depends on gap sequence| n&nbsp;(log(n))<sup>2</sup>| 1| No||
291290
|**Counting sort**| n + r| n + r| n + r| n + r| Yes| r - biggest number in array|
292-
|**Radix sort**| n * k| n * k| n * k| n + k| Yes| k - length of longest key|
291+
|**Radix sort**| n * k| n * k| n * k| n + k| Yes| k - length of longest key|

‎README.ko-KR.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ _Read this in other languages:_
1212
[_English_](https://github.com/trekhleb/javascript-algorithms/),
1313
[_简体中文_](README.zh-CN.md),
1414
[_繁體中文_](README.zh-TW.md),
15+
[_日本人_](README.ja-JP.md),
1516
[_Polski_](README.pl-PL.md),
1617
[_Français_](README.fr-FR.md),
1718
[_Español_](README.es-ES.md),

‎README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ _Read this in other languages:_
1414
[_简体中文_](README.zh-CN.md),
1515
[_繁體中文_](README.zh-TW.md),
1616
[_한국어_](README.ko-KR.md),
17+
[_日本人_](README.ja-JP.md),
1718
[_Polski_](README.pl-PL.md),
1819
[_Français_](README.fr-FR.md),
1920
[_Español_](README.es-ES.md),

‎README.pl-PL.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ _Read this in other languages:_
1515
[_简体中文_](README.zh-CN.md),
1616
[_繁體中文_](README.zh-TW.md),
1717
[_한국어_](README.ko-KR.md),
18+
[_日本人_](README.ja-JP.md),
1819
[_Français_](README.fr-FR.md),
1920
[_Español_](README.es-ES.md),
2021
[_Português_](README.pt-BR.md)

‎README.pt-BR.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ _Leia isto em outros idiomas:_
1515
[_简体中文_](README.zh-CN.md),
1616
[_繁體中文_](README.zh-TW.md),
1717
[_한국어_](README.ko-KR.md),
18+
[_日本人_](README.ja-JP.md),
1819
[_Polski_](README.pl-PL.md),
1920
[_Français_](README.fr-FR.md),
2021
[_Español_](README.es-ES.md)

‎README.zh-CN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ _Read this in other languages:_
1111
[_English_](https://github.com/trekhleb/javascript-algorithms/),
1212
[_繁體中文_](README.zh-TW.md),
1313
[_한국어_](README.ko-KR.md),
14+
[_日本人_](README.ja-JP.md),
1415
[_Polski_](README.pl-PL.md),
1516
[_Français_](README.fr-FR.md),
1617
[_Español_](README.es-ES.md),

‎README.zh-TW.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ _Read this in other languages:_
1010
[_English_](https://github.com/trekhleb/javascript-algorithms/),
1111
[_简体中文_](README.zh-CN.md),
1212
[_한국어_](README.ko-KR.md),
13+
[_日本人_](README.ja-JP.md),
1314
[_Polski_](README.pl-PL.md),
1415
[_Français_](README.fr-FR.md),
1516
[_Español_](README.es-ES.md),

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp