#
queues
Here are 473 public repositories matching this topic...
adamgfraser
commented
Apr 14, 2021
java
discussion
benchmark
awesome
experimental
concurrency
lock
data-structures
benchmarks
offer
lock-free
queues
wait-free
spsc
jctools
-
Updated
Jul 19, 2021 - Java
python
search
c-plus-plus
algorithms
graphs
strings
cracking-the-coding-interview
recursion
sorting-algorithms
arrays
dynamic-programming
trees
stacks
queues
-
Updated
Mar 13, 2021 - C++
A consolidated collection of resources for you to learn and understand algorithms and data structures easily.
algorithm
linked-list
sort
data-structures
bubble-sort
sorting-algorithms
interview-practice
interview-questions
big-o
dynamic-programming
quicksort-algorithm
stacks
knapsack-problem
greedy-algorithm
queues
merge-sort
linear-search
-
Updated
May 29, 2021
Collection of persistent (disk-based) and non-persistent (memory-based) queues for Python
-
Updated
Aug 26, 2021 - Python
Abhinandan1414
commented
May 7, 2020
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++.
hashing
data-structure
linked-list
graphs
bloom-filter
trie
hash
recursion
data-structures
binary-search-tree
string-manipulation
binary-tree
binary-trees
bst
trees
stacks
heaps
queues
leaf-nodes
trie-template
-
Updated
Oct 28, 2020 - C++
Beanstalkg is a go implementation of beanstalkd - A fast, general-purpose work queue
-
Updated
Dec 5, 2019 - Go
InterviewBit Programming Solutions
hashing
linked-list
math
cpp
solutions
graph-algorithms
maps
array
backtracking
binary-search-tree
tree-structure
dynamic-programming
greedy-algorithms
stacks
heaps
queues
interviewbit
two-pointers
bitmanipulation
-
Updated
Oct 1, 2020 - C++
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
Jul 22, 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
nodejs
workflow
automation
engine
workflow-engine
scheduler
jobs
process
orchestration
workflow-automation
queues
job-orchestration
queuing-system
-
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
linked-list
algorithms
graph-algorithms
strings
competitive-programming
data-structures
matrices
sorting-algorithms
heap
hackerearth
trees
stacks
coding-challenge
queues
geeksforgeeks-solutions
techgig
geeksforgeeks-python
daily-coding-problem
interviewing-io
coding-platform
-
Updated
Aug 8, 2021 - Python
Leverage the power of modern C++ to build robust and scalable applications
lists
bloom-filters
algorithm
graphs
sort
dynamic-programming
trees
greedy-algorithms
stacks
hash-tables
heaps
lcs
queues
knapsack
subset-sum
divide-and-conquer
strongly-connected-components
bellman-ford
dijkstras-algorithm
traversals
-
Updated
Nov 1, 2020 - C++
-
Updated
Jul 28, 2020 - Ruby
A playground for learning DataStructures, Algorithms and Object Oriented Concepts.
python
c
java
linked-list
stack
algorithms
matrix
es6-javascript
recursion
data-structures
sorting-algorithms
arrays
interview-questions
searching-algorithms
hacktoberfest
queues
circular-linked-list
javascript-algorithms
-
Updated
Apr 30, 2021 - Java
PHP microframework for robust API development with CQRS
-
Updated
Sep 1, 2021 - PHP
ngx_lfqueue is the queue which share memory across multiple threads and multiple worker without any lock!!
-
Updated
Sep 21, 2018 - C
Yii2 Queue Manager (Analytic & Monitor)
yii2
queue
analytics
yii2-extension
queues
yii2-queue
yii2-modules
queue-manager
queue-monitor
queue-analytics
-
Updated
Aug 18, 2020 - PHP
light weight, high performance, simple, reliable and persistent queue for Java applications
-
Updated
Jan 20, 2021 - Java
A good collection of technical interview and software development questions in JavaScript
javascript
front-end
web-development
web
frontend
leetcode
strings
sort
javascript-concepts
arrays
software-engineering
interview-questions
trees
stacks
searching
queues
front-end-development
linkedlists
javascript-developer
-
Updated
Jul 15, 2021 - JavaScript
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.