diff options
author | internetlandlord <f.fredhenry@gmail.com> | 2022-11-09 21:39:07 +0000 |
---|---|---|
committer | internetlandlord <f.fredhenry@gmail.com> | 2022-11-09 21:39:07 +0000 |
commit | 67c4ebf8ee89205ab2aa35dba748c90bbf477bf5 (patch) | |
tree | 46b90e3502cd9752f6d9e30ddd8591375e48e83b | |
parent | df5e8d731a5c36b509d537ed097de8d72c07a0c9 (diff) |
updated README.md
-rw-r--r-- | README.md | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -1,8 +1,5 @@ # algo-py: the python algorithm repository -The purpose of this repo is to explore and demonstrate the function of computer -science algorithms with file manipulation (using CSV files of random numbers). - -The functional file contains I/O functions for ingressing and egressing data. +The purpose of this repo is to explore and demonstrate the function of computer science algorithms with file manipulation (using CSV files of random numbers). ### featured algorithms: * Selection Sort - 0(n^2) @@ -20,7 +17,7 @@ Generates a series of CSVs in progressively larger sizes for running algorithms #### inputoutput.py Library for functions that are used by the scripts to: * generate -* ingest +* import * export the contents of CSV files for sorting purposes @@ -29,8 +26,3 @@ Uses the inputoutput file as a module for generating CSVs based on command line #### tripler.py Proof-of-concept for CSV content manipulation. Also serves as base for additional algorithms - -## ideas-list -- Reverse order sorting algorithms (to kick it up a notch) -- time study (how long does each take) + complexity log -- seperate file appends depending on each algorithm used |