#include <iostream>
using namespace std;

class HashMap{
private:
	int *table;		/*Массив элементов*/
	int *deleted;	/*Массив для поддержки удаления*/
	static const int table_size = 70000;
	static const int NIL = 0;
	static const int DELETED = -1;
public:
	HashMap();
	
	HashMap(int arr[], int len)
	{
		for (int i = 0; i < len; i++)
			std::cout << arr[i];
		std::cout << std::endl;
	}
	
	~HashMap()
	{
		std::cout << "pizdariki\n";
	}
	
	int insert(int key);
	int search(int key);
	bool remove(int key);
};

int main() {
	int arr[] = {1, 2, 3};
	HashMap * map = new HashMap(arr, 3);
	delete map;
	
	int brr[] = {4, 5};
	map = new HashMap(brr, 2);
	delete map;
	
	return 0;
}