public void BuscaPorNum(int numero) { if (Vazia()) { Console.WriteLine("Fila vazia!! Não é possível buscar!!"); } else { Head.Busca(numero); } }