queues
Here are 484 public repositories matching this topic...
We have utf8Decode but not utf8Encode, etc.
-
Updated
Jul 19, 2021 - Java
-
Updated
Mar 13, 2021 - C++
A consolidated collection of resources for you to learn and understand algorithms and data structures easily.
-
Updated
May 29, 2021
Collection of persistent (disk-based) and non-persistent (memory-based) queues for Python
-
Updated
Aug 26, 2021 - Python
The mentioned file needs to be re-written. There is no concept of overflow in Circular Queue as it wraps up. What I mean is:
Test Driver Code:
public static void main(String[] agrs) {
CircularQueue q = new CircularQueue(5);
q.insert(10);
q.insert(20);
q.insert(30);
q.insert(40);
q
Data-Structures using C++.
-
Updated
Oct 28, 2020 - C++
InterviewBit Programming Solutions
-
Updated
Oct 1, 2020 - C++
Beanstalkg is a go implementation of beanstalkd - A fast, general-purpose work queue
-
Updated
Dec 5, 2019 - Go
An Amazon SQS client that supports creating lightweight, automatically-deleted temporary queues, for use in common messaging patterns such as Request/Response. See http://aws.amazon.com/sqs.
-
Updated
Sep 17, 2021 - Java
Lightweight, thread-safe, blocking FIFO queue based on auto-resizing circular buffer
-
Updated
Oct 18, 2020 - Go
Custom Apex queue to process arbitrary work on existing SObject in a guaranteed order.
-
Updated
Jun 22, 2019 - Apex
-
Updated
Jul 28, 2020 - JavaScript
Data Structures & Algorithms Implementation in Python
-
Updated
Apr 4, 2017 - Python
Queue is a generic interface to abstract the details of implementation of queue systems.
-
Updated
Apr 27, 2020 - Go
Generic queues with adapter support for Elixir
-
Updated
Oct 31, 2019 - Elixir
GeeksForGeeks, HackerEarth, Coding Tests and Several Other platforms - Data Structures, Algorithms Implementations in Python
-
Updated
Aug 8, 2021 - Python
Leverage the power of modern C++ to build robust and scalable applications
-
Updated
Nov 1, 2020 - C++
-
Updated
Jul 28, 2020 - Ruby
A playground for learning DataStructures, Algorithms and Object Oriented Concepts.
-
Updated
Oct 4, 2021 - Java
A good collection of technical interview and software development questions in JavaScript
-
Updated
Jul 15, 2021 - JavaScript
PHP microframework for robust API development with CQRS
-
Updated
Sep 19, 2021 - PHP
ngx_lfqueue is the queue which share memory across multiple threads and multiple worker without any lock!!
-
Updated
Sep 21, 2018 - C
light weight, high performance, simple, reliable and persistent queue for Java applications
-
Updated
Jan 20, 2021 - Java
Yii2 Queue Manager (Analytic & Monitor)
-
Updated
Aug 18, 2020 - PHP
Improve this page
Add a description, image, and links to the queues topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the queues 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.