void Search_Element(int searchValue)
{
Node* temp = head;
int i;
for (i=0; temp != NULL; i++)
{
temp = temp->next;
if (temp->key == searchValue)
{
cout << i << "
";
}
else
{
cout << -1 << "
";
}
}
}