2020-05-06 14:23:37 +02:00
|
|
|
# The Algorithms - JavaScript
|
2017-10-27 14:57:17 +05:30
|
|
|
|
2022-05-06 13:46:34 +05:30
|
|
|
<!-- Front Matter -->
|
|
|
|
|
JavaScript Repository of TheAlgorithms, which implements various algorithms and data structures in JavaScript.
|
2020-05-03 18:40:50 +05:30
|
|
|
|
2022-05-06 13:46:34 +05:30
|
|
|
<div align="center">
|
2021-04-03 04:19:54 -04:00
|
|
|
|
2022-05-06 13:46:34 +05:30
|
|
|
[![JavaScript Banner][banner]](DIRECTORY.md)
|
2017-10-27 14:57:17 +05:30
|
|
|
|
2022-05-06 13:46:34 +05:30
|
|
|
[![Checks][checks]][actions]
|
|
|
|
|
[![Contributions Welcome][welcome]](CONTRIBUTING.md)
|
|
|
|
|
[![standard.js][standard-logo]][standard-js]
|
|
|
|
|
[![Discord chat][chat]][discord-server]
|
2017-10-27 14:57:17 +05:30
|
|
|
|
2022-05-06 13:46:34 +05:30
|
|
|
|
|
|
|
|
</div>
|
2017-10-27 14:57:17 +05:30
|
|
|
|
2022-05-06 13:46:34 +05:30
|
|
|
---
|
2017-10-27 14:57:17 +05:30
|
|
|
|
2022-05-06 13:46:34 +05:30
|
|
|
<!-- Disclaimer -->
|
2017-10-27 14:57:17 +05:30
|
|
|
|
2022-05-06 13:46:34 +05:30
|
|
|
<h4 align="center">
|
|
|
|
|
These implementations are for demonstrative purposes only. Dedicated implementations of these algorithms and data
|
2022-05-06 16:21:56 +06:00
|
|
|
structures are much better for performance and security reasons. We also do not provide any guarantee for api stability.
|
2022-05-06 13:46:34 +05:30
|
|
|
</h4>
|
2019-05-10 17:43:13 +09:00
|
|
|
|
2022-05-06 13:46:34 +05:30
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<!-- Body -->
|
|
|
|
|
|
|
|
|
|
Before contributing to this repository, make sure to read our [Contribution Guidelines](CONTRIBUTING.md). You can look
|
|
|
|
|
at other [TheAlgorithms Repositories][repositories] or the [issues with a "help wanted" label][help-wanted] for
|
|
|
|
|
inspiration regarding what to implement. Our maintainers will guide you through how to make your contribution properly
|
2022-12-08 07:26:10 -06:00
|
|
|
if you make any mistakes. The names of the maintainers of this repository are listed in the
|
2022-05-06 13:46:34 +05:30
|
|
|
[CODEOWNERS file](.github/CODEOWNERS).
|
|
|
|
|
|
|
|
|
|
You can find a list of the algorithms currently in the repository in the [directory](DIRECTORY.md). Explanations of
|
|
|
|
|
many of the algorithms can be found in the [wiki][explanation].
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<!-- Banner Image -->
|
|
|
|
|
[banner]: https://user-images.githubusercontent.com/68542775/167072911-dc31eac8-6885-4a05-9c25-279ecce22a79.png
|
|
|
|
|
|
|
|
|
|
<!-- Badge Links -->
|
|
|
|
|
[standard-logo]: https://img.shields.io/badge/code%20style-standardjs-%23f3df49
|
|
|
|
|
[chat]: https://img.shields.io/discord/808045925556682782.svg?logo=discord&colorB=7289DA
|
|
|
|
|
[welcome]: https://img.shields.io/static/v1.svg?label=Contributions&message=Welcome&color=0059b3
|
2022-12-17 00:22:15 -06:00
|
|
|
[checks]: https://img.shields.io/github/actions/workflow/status/TheAlgorithms/JavaScript/Ci.yml?branch=master&label=checks
|
|
|
|
|
[grade]: https://img.shields.io/lgtm/grade/javascript/g/TheAlgorithms/JavaScript.svg?logo=lgtm&logoWidth=18
|
2022-05-06 13:46:34 +05:30
|
|
|
|
|
|
|
|
<!-- External Links -->
|
|
|
|
|
[standard-js]: https://standardjs.com/
|
2022-10-17 22:26:25 +05:00
|
|
|
[discord-server]: https://the-algorithms.com/discord/
|
2022-05-06 13:46:34 +05:30
|
|
|
[actions]: https://github.com/TheAlgorithms/JavaScript/actions
|
|
|
|
|
[explanation]: https://github.com/TheAlgorithms/JavaScript/wiki
|
|
|
|
|
[repositories]: https://github.com/orgs/TheAlgorithms/repositories
|
|
|
|
|
[help-wanted]: https://github.com/TheAlgorithms/JavaScript/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22
|