Advertisement
lukusm

functions.h

Dec 2nd, 2014
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include "headers.h"
  2.  
  3. using namespace std;
  4.  
  5. void randomNumGen(int, int, vector<double>&);
  6. double timesDiff(clock_t, clock_t);
  7. void writeResults(string, vector<double>, vector<double>, vector<double>);
  8. void BubbleSort(vector<double> &Numbers);
  9. void SelectionSort(vector<double> &Smallest);
  10. void InsertionSort(vector<double> &data);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement