-
Updated
Sep 14, 2020 - JavaScript
searching
Here are 282 public repositories matching this topic...
-
Updated
Jun 16, 2020 - Swift
-
Updated
Jun 26, 2020 - JavaScript
-
Updated
Nov 8, 2019 - C++
-
Updated
Sep 25, 2020 - C#
Hello people,
When I use keyboard arrow keys to select items, the roller can't scroll to the right position.
And I got the solution, but it will be great if someone can help me to fix this bug.
Thanks.
<template>
<div :class="className">
<CoolSelect @search-
Updated
May 21, 2020 - C#
-
Updated
Sep 21, 2020 - PHP
-
Updated
Jul 10, 2020 - Elixir
-
Updated
Jul 23, 2019 - HTML
-
Updated
Oct 13, 2020 - Python
-
Updated
Jun 10, 2020 - Elixir
A plugin that would open the typed URL in the input in a new tab.
-
Updated
Oct 31, 2019 - Python
-
Updated
Jul 26, 2020 - Go
-
Updated
Sep 12, 2020 - C#
-
Updated
Jan 24, 2019 - Jupyter Notebook
-
Updated
Oct 8, 2020 - JavaScript
-
Updated
Aug 11, 2020 - PHP
Improve this page
Add a description, image, and links to the searching topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the searching 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.