Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. #include "MSearchTree.h"
  5. #include <chrono>
  6. using namespace std::chrono;
  7.  
  8.  
  9. void test()
  10. {
  11.  
  12. }
  13. int main()
  14. {
  15. auto begin = high_resolution_clock::now();
  16. test();
  17. auto end = high_resolution_clock::now();
  18. cout << "done in " << duration_cast<milliseconds>(end - begin).count() << "ms" << endl;
  19. system("pause");
  20. return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement