hashing-algorithms
Here are 49 public repositories matching this topic...
-
Updated
Oct 14, 2019 - Python
-
Updated
Oct 10, 2020 - C++
-
Updated
Nov 8, 2020 - C
AJAX form
Make this form use a jQuery AJAX call. Make the PR request to the hacktober
branch.
-
Updated
Aug 1, 2020 - JavaScript
-
Updated
Aug 17, 2019 - C#
-
Updated
Mar 22, 2017 - C++
-
Updated
Aug 7, 2020 - PHP
-
Updated
Oct 27, 2020 - C#
-
Updated
Nov 2, 2017 - Python
-
Updated
Sep 7, 2020 - TypeScript
-
Updated
Sep 28, 2020 - C#
-
Updated
Mar 22, 2017 - Go
-
Updated
Sep 9, 2020 - Python
-
Updated
May 11, 2018 - JavaScript
-
Updated
Oct 13, 2020 - Java
-
Updated
Oct 25, 2020 - C++
-
Updated
May 21, 2019 - C
-
Updated
Oct 7, 2020 - C#
-
Updated
Oct 28, 2020 - Scala
-
Updated
Mar 29, 2020 - PHP
-
Updated
May 23, 2020 - C++
-
Updated
Jun 17, 2017 - C
-
Updated
Oct 20, 2018 - Java
-
Updated
Apr 12, 2019 - C
Improve this page
Add a description, image, and links to the hashing-algorithms topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the hashing-algorithms topic, visit your repo's landing page and select "manage topics."
steps to reproduce
Write a loop, from 1 to 80000, each time add a random int to the max heap.
In theory it takes very little time(NlogN, N=80000, <1sec ), but the program does take a long time.
I'v also tested the BinaryHeap in https://github.com/SolutionsDesign/Algorithmia, it performs well, so it is probably due to the bad algorithm.