An open API service indexing awesome lists of open source software.

https://github.com/danielbatres/algorithmic-complexity-javascript

This project is aimed at learning about algorithmic complexity with JavaScript, to assess algorithms using Big O notation and considering both time complexity and space complexity.
https://github.com/danielbatres/algorithmic-complexity-javascript

algorithm-analysis algorithms big-o big-o-notation complexity javascript nodejs

Last synced: 10 months ago
JSON representation

This project is aimed at learning about algorithmic complexity with JavaScript, to assess algorithms using Big O notation and considering both time complexity and space complexity.

Awesome Lists containing this project

README

          

# Algorithmic complexity with JavaScript and Big O notation

## Algorithmic Complexity Evaluation with JavaScript

This project focuses on the evaluation of time and space complexity of algorithms using Big O notation, and employs a concise and simplified evaluation approach.

### Evaluation Methods

JavaScript is used to perform the evaluations, making use of the following functions:
- `console.time()`
- `console.timeEnd()`
- `performance.now()`

These functions assist in measuring the execution time of algorithms. It's important to note that the data obtained may not be entirely precise, but they offer a practical way to estimate algorithm performance.