-
Updated
Nov 6, 2020 - JavaScript
sorting
Here are 1,083 public repositories matching this topic...
-
Updated
Nov 7, 2020 - Go
-
Updated
Aug 13, 2020 - JavaScript
-
Updated
Nov 5, 2020 - Python
-
Updated
Feb 23, 2020 - JavaScript
-
Updated
May 27, 2020 - Java
-
Updated
Jul 28, 2020 - JavaScript
-
Updated
Aug 10, 2020 - TypeScript
-
Updated
Sep 13, 2020 - PHP
-
Updated
Jun 26, 2020 - JavaScript
In windows OS, I want to sorted files in a content with a natural way. But I found your code seems to be not well done in windows. The '_' is sorted after number '0-9'. But in windows OS, the '_' is showed before number '0-9'.
-
Updated
Oct 20, 2020 - JavaScript
Would it be possible to add a flag for this?
Use Symlinks
-
Updated
Dec 19, 2019 - Python
-
Updated
Sep 10, 2020 - HTML
-
Updated
Aug 26, 2018 - Go
-
Updated
Jul 28, 2020 - Python
-
Updated
Jul 10, 2020 - Elixir
-
Updated
Sep 12, 2020 - Vue
-
Updated
Nov 2, 2020 - TypeScript
-
Updated
Jul 10, 2020 - Elixir
Improve this page
Add a description, image, and links to the sorting topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the sorting 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.