Metadata-Version: 2.1
Name: python-sorter
Version: 1.1.0
Summary: Apply multiple type of sorting algorithm on your data and also compare which sorting is fastes on your data
Home-page: https://github.com/Deep-Dey/python-sorter
Author: Deep Dey
Author-email: deepdey10998@gmail.com
License: MIT
Description: # python-sorter
        
        A **Python** package to apply multiple type of sorting algorithm on your data and also compare which sorting is fastes on your data. Visit the page for <a href="https://pypi.org/project/python-sorter/">python-sorter</a>
        
        ## Installation
            
            pip install python-sorter 
        
        ## Usage
        
            import data_sorter
            
            arr = [0.32, 0.33, 0.37, 0.42, 0.47, 0.51, 0.52]
            arr = data_sorter.bubble_sort(arr)
            print(arr)
        
        # Available sorting algorithms
        
            - brick_sort
            - bubble_sort
            - bucket_sort (only for float data)
            - comb_sort
            - counting_sort
            - cycle_sort
            - gnome_sort
            - heap_sort
            - insertion_sort
            - intro_sort
            - merge_sort
            - pigeonhole_sort
            - quick_sort
            - radix_sort
            - selection_sort
            - stooge_sort
            - strand_sort
            - tree_sort
Keywords: sorting python buublesort quicksort mergesort
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
