#include <vector>
#include <iostream>
#include <fstream>
#include <string>

using namespace std;


int main()
{
	vector<hash> hashes;
	system("pause");
}

int iterateHash()
{
	string word = "lalalalalala";
	for (vector<hash>::iterator it = hashes.begin(); it != hashes.end(); ++it)
	{
		if (word == *it.word) it.number++; // this line has two erros obviously

	}
}



struct hash()
{
	string word;
	int number;
}
