typescript-algorithms icon indicating copy to clipboard operation
typescript-algorithms copied to clipboard

πŸ”– Algorithms and data structures implemented in TypeScript

Results 8 typescript-algorithms issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@​ChALkeR). Fix boolean schemas with strictKeywords...

dependencies

Bumps [ws](https://github.com/websockets/ws) from 7.2.3 to 7.5.9. Release notes Sourced from ws's releases. 7.5.9 Bug fixes Backported bc8bd34e to the 7.x release line (0435e6e1). 7.5.8 Bug fixes Backported 0fdcc0af to the...

dependencies

Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tmpl&package-manager=npm_and_yarn&previous-version=1.0.4&new-version=1.0.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Once the priority queue is added, it's worth polishing the implementation of the Dijkstra to improve the running time

A priority queue data structure should be added to adjust the current implementation of the Dijkstra's algorithm (it's actual running time complexity is inexcusable)

It does make sense to add a max heap implementation since we are going to add a min heap one

Min heap data structure is required for priority queue implementation