Answer the question
In order to leave comments, you need to log in
What is the role of the first and second cycle in bubble sort?
//Вопрос в комментах помечен знаком (?)
public void bubbleSort(){
int in, out;
for(out = nElements-1; out > 1; out--)// внешний цикл (обратный) это количество раз сравнений ?
for(in = 0; in < out; in++)//внутренний цикл (прямой) это количество раз поменяется местами ?
if(a[in] > a[in+1])// условия при котором меняются местами
swap(in, in+1);// меняться местами
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question