root/labo1/labo1/labo1.cpp

User picture

Author: machiel.sleeuwaert

Revision: 13 («Previous)


File Size: 470 Bytes

(October 08, 2008 15:33 UTC) Over 3 years ago


  

 
Show/hide line numbers
// labo1.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "intlijst.h"
#include "windows.h"
#include "AltMap.h"
int _tmain(int argc, _TCHAR* argv[])
{
  
	IntLijst *ilPTR= new IntLijst();
	AltMap *amPTR = new AltMap();

	DWORD time = GetTickCount();
	
	

	for (int i=0;i<3000000;++i){

		amPTR->Insert("ss","ss");
	}

	

		time = GetTickCount() - time;
		cout << time;

	cin.get();
	return 0;
}