#
sorting
Here are 1,311 public repositories matching this topic...
A set of higher-order components to turn any list into an animated, accessible and touch-friendly sortable list✌️
-
Updated
Jun 15, 2021 - JavaScript
The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript.
react
pagination
sorting
vuejs
angular
grid
excel
vue-table
table
datatable
angular-grid
datagrid
filtering
react-table
charting
react-grid
grouping
pivoting
angular-table
javascript-table
-
Updated
Jun 18, 2021 - TypeScript
Algorithms Implemented in GoLang
search
sorting
algorithms
datastructures
interview
data-structures
preparation
hacktoberfest
algorithms-implemented
community-driven
interview-preparation
-
Updated
Jun 7, 2021 - Go
Github fork of Christian Bach's tablesorter plugin + awesomeness ~
-
Updated
May 25, 2021 - 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
Jun 14, 2021 - Python
Turn your old table to drag-and-drop table with columns and rows sorting like magic!
-
Updated
Feb 23, 2020 - JavaScript
thenBy is a javascript micro library that helps sorting arrays on multiple keys
-
Updated
May 10, 2021 - 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
Simple yet flexible natural sorting in Python.
-
Updated
May 4, 2021 - Python
-
Updated
May 26, 2021 - TypeScript
Package for handling column sorting in Laravel 5/6/7/8
-
Updated
Apr 7, 2021 - 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
Apr 14, 2021 - JavaScript
Open
Date sanity checking
1
Avamander
commented
Jul 18, 2020
It seems that a few platforms add nasty fake EXIF dates to their images, which means they're renamed and sorted to basically random folders.
Could it be implemented that phockup
passes/skips images that have dates before the invention of digital cameras or more than a few months in the future?
Fast Differentiable Sorting and Ranking
-
Updated
Jul 28, 2020 - Python
A Blend of Data Structures, Algorithms and Development encapsulated in an Open Source Project!
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
Jun 10, 2021 - JavaScript
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
A Javascript library making HTML tables filterable and a bit more :)
-
Updated
May 7, 2021 - HTML
Sorting Algorithms Visualizer
-
Updated
Jun 8, 2021 - JavaScript
learning
sorting
image
neural-network
machine
artificial-intelligence
classification
deepdetect
renaming
-
Updated
Aug 26, 2018 - Go
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
May 27, 2021 - Vue
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
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.