class Program
{
static void Main(string[] args)
{
int[] mas = { 4, 5, 25, 21, 0, 8, 6, 97, 60, 46, 54 };
Sort Ring = new Sort();
foreach (int item in Ring.Search(mas))
{
Console.Write("{0}, ", item);
}
Console.ReadKey();
}
}
class Sort
{
// Сортировка пузырьком
public int[] Search(int[] gmas)
{
for (int i = 1; i < gmas.Length; i++)
{
if (gmas[i - 1] > gmas[i])
{
int LastPoint = gmas[i];
gmas[i] = gmas[i - 1];
gmas[i - 1] = LastPoint;
i = 1;
}
}
return gmas;
}
}
i = 1;
заменить на i = 0;
i=1;
) будет выполнено i++
.class Program
{
static void Main(string[] args)
{
int[] mas = { 4, 5, 25, 21, 0, 8, 6, 97, 60, 46, 54 };
Sort Ring = new Sort();
foreach (int item in Ring.Search(mas))
{
Console.Write("{0}, ", item);
}
Console.ReadKey();
}
}
class Sort
{
// Сортировка пузырьком
public int[] Search(int[] gmas)
{
for (int i = 1; i < gmas.Length; i++)
{
if (gmas[i - 1] > gmas[i])
{
int LastPoint = gmas[i];
gmas[i] = gmas[i - 1];
gmas[i - 1] = LastPoint;
i = 0; // заменяли только эту строчку
}
}
return gmas;
}
}
public int[] Search(int[] gmas)
{
for (int i = 0; i < gmas.length-1; i++)
{
bool swapped = false;
for (int j = 0; j < gmas.length-i-1; j++)
{
if (gmas[j] > gmas[j+1])
{
int b = gmas[j];
gmas[j] = gmas[j+1];
gmas[j+1] = b;
swapped = true;
}
}
if(!swapped)
break;
}
}