Task : implement three sorting algorithms: bubble, inserts, selection.
- the laboratory work consists of two files: simple-sort.java — function prototypes, function implementation; test-simple-sort.java — testing functions;
- list of function requirements (it is enough to implement three):
- sorting an array of integers of a given size
- sorting any subsequence of the array
- sorting arrays with any data types
- sorting the container by choice