#
sorting
Here are 1,211 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
Feb 3, 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
Mar 5, 2021 - TypeScript
Algorithms Implemented in GoLang
search
sorting
algorithms
datastructures
interview
data-structures
preparation
hacktoberfest
algorithms-implemented
community-driven
interview-preparation
-
Updated
Mar 7, 2021 - Go
Github fork of Christian Bach's tablesorter plugin + awesomeness ~
-
Updated
Dec 15, 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
Mar 7, 2021 - 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
Dec 12, 2020 - JavaScript
-
Updated
Jan 13, 2021 - TypeScript
Package for handling column sorting in Laravel 5/6/7/8
-
Updated
Jan 13, 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
Jun 26, 2020 - JavaScript
Simple yet flexible natural sorting in Python.
-
Updated
Jan 25, 2021 - Python
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?
Algorithms Visualiser is an opensource project made using ReactJS. Visualise Algorithms on Sorting, Pathfinding, Searching, Word Search, Backtracking.
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
Dec 27, 2020 - 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
Sep 10, 2020 - HTML
Fast Differentiable Sorting and Ranking
-
Updated
Jul 28, 2020 - Python
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
Jan 5, 2021 - Vue
A single-page website aiming to provide innovative and intuitive visualizations of common and AI algorithms.
react
visualization
sorting
algorithms
pathfinding
artificial-intelligence
visualizer
algorithm-visualization
-
Updated
Oct 23, 2020 - JavaScript
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.