You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.ar-AR.md
+2
Original file line number
Diff line number
Diff line change
@@ -321,3 +321,5 @@ npm test -- 'playground'
321
321
> يمكنك دعم هذا المشروع عبر ❤️️ [GitHub](https://github.com/sponsors/trekhleb) أو ❤️️ [Patreon](https://www.patreon.com/trekhleb).
322
322
323
323
[الناس الذين يدعمون هذا المشروع](https://github.com/trekhleb/javascript-algorithms/blob/master/BACKERS.md)`∑ = 0`
324
+
325
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.de-DE.md
+3
Original file line number
Diff line number
Diff line change
@@ -331,3 +331,6 @@ Nachfolgend finden Sie eine Liste einiger der am häufigsten verwendeten Big O-N
331
331
> Du kannst dieses Projekt unterstützen über ❤️️ [GitHub](https://github.com/sponsors/trekhleb) or ❤️️ [Patreon](https://www.patreon.com/trekhleb).
332
332
333
333
[Leute, die dieses Projekt unterstützen](https://github.com/trekhleb/javascript-algorithms/blob/master/BACKERS.md)`∑ = 0`
334
+
335
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.es-ES.md
+2
Original file line number
Diff line number
Diff line change
@@ -299,3 +299,5 @@ frente a diferentes tamaños de los datos de entrada.
299
299
|**Shellsort**| n log(n) | depende de la secuencia de huecos | n (log(n))<sup>2</sup> | 1 | No ||
300
300
|**Ordenamiento por cuentas**| n + r | n + r | n + r | n + r | Si | r - mayor número en el arreglo |
301
301
|**Ordenamiento Radix**| n \* k | n \* k | n \* k | n + k | Si | k - largo de la llave más larga |
302
+
303
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.fr-FR.md
+1
Original file line number
Diff line number
Diff line change
@@ -293,3 +293,4 @@ comparaisons de performance suivant différentes tailles pour les données d'ent
293
293
|**Tri Shell**| n log(n) | dépend du gap séquence | n (log(n))<sup>2</sup> | 1 | Non ||
294
294
|**Tri Comptage**| n + r | n + r | n + r | n + r | Oui | r - le plus grand nombre dans la liste |
295
295
|**Tri Radix**| n \* k | n \* k | n \* k | n + k | Non | k - longueur du plus long index |
296
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.id-ID.md
+2
Original file line number
Diff line number
Diff line change
@@ -304,3 +304,5 @@ Di bawah ini adalah daftar dari beberapa notasi _Bog O_ yang sering digunakan da
304
304
> Anda dapat mendukung proyek ini via ❤️️ [GitHub](https://github.com/sponsors/trekhleb) atau ❤️️ [Patreon](https://www.patreon.com/trekhleb).
305
305
306
306
[Orang-orang yang mendukung proyek ini](https://github.com/trekhleb/javascript-algorithms/blob/master/BACKERS.md)`∑ = 1`
307
+
308
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.it-IT.md
+2
Original file line number
Diff line number
Diff line change
@@ -297,3 +297,5 @@ Nella tabella qua sotto ci sono riportate la lista delle notazioni Big O più us
297
297
|**Shell sort**| n log(n) | dipende dagli spazi vuoti nella sequenza | n (log(n))<sup>2</sup> | 1 | No ||
298
298
|**Counting sort**| n + r | n + r | n + r | n + r | Yes | r - numero più grande nell'array |
299
299
|**Radix sort**| n * k | n * k | n * k | n + k | Yes | k - lunghezza della chiave più grande |
300
+
301
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.ja-JP.md
+2
Original file line number
Diff line number
Diff line change
@@ -296,3 +296,5 @@ npm test -- 'playground'
296
296
|**Shell sort**| n log(n) | depends on gap sequence | n (log(n))<sup>2</sup> | 1 | No ||
297
297
|**Counting sort**| n + r | n + r | n + r | n + r | Yes | r - biggest number in array |
298
298
|**Radix sort**| n * k | n * k | n * k | n + k | Yes | k - length of longest key |
299
+
300
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.ko-KR.md
+2
Original file line number
Diff line number
Diff line change
@@ -277,3 +277,5 @@ Source: [Big O Cheat Sheet](http://bigocheatsheet.com/).
277
277
|**셸 정렬**| n log(n) | 간격 순서에 영향을 받습니다. | n (log(n))<sup>2</sup> | 1 | No ||
278
278
|**계수 정렬**| n + r | n + r | n + r | n + r | Yes | r - 배열내 가장 큰 수 |
279
279
|**기수 정렬**| n * k | n * k | n * k | n + k | Yes | k - 키값의 최대 길이 |
280
+
281
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -343,3 +343,5 @@ Below is the list of some of the most used Big O notations and their performance
343
343
> You may support this project via ❤️️ [GitHub](https://github.com/sponsors/trekhleb) or ❤️️ [Patreon](https://www.patreon.com/trekhleb).
344
344
345
345
[Folks who are backing this project](https://github.com/trekhleb/javascript-algorithms/blob/master/BACKERS.md)`∑ = 0`
346
+
347
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.pl-PL.md
+2
Original file line number
Diff line number
Diff line change
@@ -289,3 +289,5 @@ Poniżej umieszczamy listę najbardziej używanych Big O notacji i ich porównan
289
289
|**Sortowanie Shella**| n log(n) | zależy od luki w układzie | n (log(n))<sup>2</sup> | 1 | No ||
290
290
|**Sortowanie przez zliczanie**| n + r | n + r | n + r | n + r | Yes | r - największy numer w tablicy|
291
291
|**Sortowanie Radix**| n * k | n * k | n * k | n + k | Yes | k -długość najdłuższego klucza |
292
+
293
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.pt-BR.md
+2
Original file line number
Diff line number
Diff line change
@@ -290,3 +290,5 @@ Abaixo está a lista de algumas das notações Big O mais usadas e suas compara
290
290
|**Shell sort**| n log(n) | depende da sequência de lacunas | n (log(n))<sup>2</sup> | 1 | Não ||
291
291
|**Counting sort**| n + r | n + r | n + r | n + r | Sim | r - maior número na matriz |
292
292
|**Radix sort**| n * k | n * k | n * k | n + k | Sim | k - comprimento da chave mais longa |
293
+
294
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.ru-RU.md
+2
Original file line number
Diff line number
Diff line change
@@ -295,3 +295,5 @@ npm test -- 'playground'
295
295
|**Сортировка Шелла**| n log(n) | зависит от выбранных шагов | n (log(n))<sup>2</sup> | 1 | Нет ||
296
296
|**Сортировка подсчётом**| n + r | n + r | n + r | n + r | Да | r — наибольшее число в массиве |
297
297
|**Поразрядная сортировка**| n * k | n * k | n * k | n + k | Да | k — длина самого длинного ключа |
298
+
299
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.tr-TR.md
+2
Original file line number
Diff line number
Diff line change
@@ -315,3 +315,5 @@ Altta Big O notations ve farklı input boyutlarına karşın yapılmış perform
315
315
## Projeyi Destekleme
316
316
317
317
Bu projeyi buradan destekleyebilirsiniz ❤️️ [GitHub](https://github.com/sponsors/trekhleb) veya ❤️️ [Patreon](https://www.patreon.com/trekhleb).
318
+
319
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.uk-UA.md
+2
Original file line number
Diff line number
Diff line change
@@ -305,3 +305,5 @@ npm test -- 'playground'
305
305
> Ви можете підтримати цей проект через ❤️️ [GitHub](https://github.com/sponsors/trekhleb) або ❤️️ [Patreon](https://www.patreon.com/trekhleb).
306
306
307
307
[Люди, які підтримують цей проект](https://github.com/trekhleb/javascript-algorithms/blob/master/BACKERS.md)`∑ = 1`
308
+
309
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.zh-CN.md
+2
Original file line number
Diff line number
Diff line change
@@ -292,3 +292,5 @@ npm test -- 'playground'
292
292
|**希尔排序**| n log(n) | 取决于差距序列 | n (log(n))^2 | 1 | No ||
293
293
|**计数排序**| n + r | n + r | n + r | n + r | Yes | r - 数组里最大的数 |
294
294
|**基数排序**| n * k | n * k | n * k | n + k | Yes | k - 最长 key 的升序 |
295
+
296
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
Copy file name to clipboardexpand all lines: README.zh-TW.md
+2
Original file line number
Diff line number
Diff line change
@@ -222,3 +222,5 @@ npm test -- 'playground'
222
222
|**合併排序**| n log(n) | n log(n) | n log(n) | n | Yes |
223
223
|**快速排序**| n log(n) | n log(n) | n^2 | log(n) | No |
224
224
|**希爾排序**| n log(n) | 由gap sequence決定 | n (log(n))^2 | 1 | No |
225
+
226
+
> ℹ️ Some more [projects](https://trekhleb.dev/projects/) and [articles](https://trekhleb.dev/blog/) about JavaScript and algorithms on [trekhleb.dev](https://trekhleb.dev)
0 commit comments