Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 581 Bytes

File metadata and controls

22 lines (18 loc) · 581 Bytes

Array_sort_application

What is this?

Application that sort the data of input file and export as text.file

why create this?

Practice of programming skills and basic Algorithm knowledge, especially sort.

Details of each file

All of programming are written by python3

  • main: main function
  • XXXXsortFile: sort function
  • writeFile: create and write the output file
  • inputFile: Manage inputfile, return error if the input file is too large or unvalid type of file

kind of sort

  • Selection sort
  • Bubble sort
  • Insertion sort
  • Merge sort
  • Quick sort
  • Heap sort