答案 0 :(得分:2)
第1点应该很简单:
loop through the whole array
{
if (array[THIS INDEX] > array[THIS INDEX + 1]) //the element before is greater than the next one
ARRAY IS NOT SORTED
}
//IF LOOP IS COMPLETED AND CODE REACHES THIS POINT
ARRAY IS SORTED
答案 1 :(得分:1)
i
中的每个[0,array.length)
时,才对数组进行排序
array[i] <= array[i+1]
表达式{{1}}产生true(确保您理解为什么这个约束很重要)。