-
Updated
Sep 4, 2020 - JavaScript
#
sorting
Here are 1,004 public repositories matching this topic...
A set of higher-order components to turn any list into an animated, accessible and touch-friendly sortable list✌️
Algorithms Implemented in GoLang
search
sorting
algorithms
datastructures
interview
data-structures
preparation
algorithms-implemented
community-driven
interview-preparation
-
Updated
Sep 5, 2020 - Go
Github fork of Christian Bach's tablesorter plugin + awesomeness ~
-
Updated
Aug 13, 2020 - JavaScript
OpenCL integration for Python, plus shiny features
python
sorting
performance
opengl
amd
gpu
opencl
array
parallel-computing
cuda
reduction
nvidia
scientific-computing
prefix-sum
heterogeneous-parallel-programming
parallel-algorithm
shared-memory
multidimensional-arrays
pyopencl
-
Updated
Sep 9, 2020 - Python
Turn your old table to drag-and-drop table with columns and rows sorting like magic!
-
Updated
Feb 23, 2020 - JavaScript
Lucene based secondary indexes for Cassandra
search
sorting
cassandra
geospatial
fuzzy-search
lucene
index
wildcard
relevance
fulltext
bitemporal
stratio
stratio-cassandra
-
Updated
May 27, 2020 - Java
thenBy is a javascript micro library that helps sorting arrays on multiple keys
-
Updated
Jul 28, 2020 - JavaScript
-
Updated
Aug 10, 2020 - TypeScript
Package for handling column sorting in Laravel 5/6/7
-
Updated
Sep 8, 2020 - PHP
jQuery grid plugin
javascript
jquery
sorting
jquery-plugin
grid
jquery-ui
table
bootstrap4
pivot-tables
editing
bootstrap3
group
pivot
searching
paging
jquery-grid-plugin
-
Updated
Jun 26, 2020 - JavaScript
oneTaken
commented
Jul 3, 2017
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'
.
The Sound of Sorting: Visualize and Audibilize 12 classic sorting algorithms in real time
visualization
python
opencv
sorting
real-time
python3
sorting-algorithms
sorting-visualization
audibilization
-
Updated
Dec 19, 2019 - Python
maxexcloo
commented
Feb 27, 2020
Would it be possible to add a flag for this?
2
Open
Use Symlinks
A Javascript library making HTML tables filterable and a bit more :)
-
Updated
Jul 22, 2020 - HTML
Currently Implemented Path Finding (Dijkstras, BFS, A Star, BiDirectional) Sorting (Merge, Quick, Heap, Bubble, Insertion, Selection) Backtracking (NQueen Problem) Searching (Linear, Binary)
react
javascript
sorting
algorithms
reactjs
pathfinding
backtracking
nqueens-problem
sorting-algorithms
bfs
binary-search
dijkstra-algorithm
backtracking-algorithm
astar-pathfinding
linear-search
nqueens
sorting-visualization
bidirectional-search
visualisers
-
Updated
Aug 19, 2020 - JavaScript
learning
sorting
image
neural-network
machine
artificial-intelligence
classification
deepdetect
renaming
-
Updated
Aug 26, 2018 - Go
Search, Sort and Pagination for ecto queries
search
pagination
sorting
elixir
ecto
sort
elixir-programming-language
paginate
rummage
sorting-ecto
ransack
metasearch
-
Updated
Jul 10, 2020 - Elixir
Advanced table based on Vue 2 and Bootstrap 4 ⚡️
pagination
sorting
vuejs2
table
vue-components
datatable
filtering
bootstrap-4
slot
pagination-component
vue-bootstrap4-table
column-slot
pagination-info
-
Updated
Sep 8, 2020 - Vue
Fast Differentiable Sorting and Ranking
-
Updated
Jul 28, 2020 - Python
Full Phoenix Support for Rummage. It can be used for searching, sorting and paginating collections in phoenix.
search
pagination
sorting
elixir
phoenix
sort
elixir-programming-language
elixir-library
searching
rummage
ransack
metasearch
-
Updated
Jul 10, 2020 - Elixir
A Vue.js component for filterable and paginated tables.
-
Updated
Sep 4, 2020 - TypeScript
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.