data-structure-php-clanguage icon indicating copy to clipboard operation
data-structure-php-clanguage copied to clipboard

3.排序篇之直接插入排序.md 里面代码有bug,

Open c2498168786 opened this issue 5 years ago • 0 comments

3.排序篇之直接插入排序.md 里面代码有bug,

因为对 已排序区无需再排序,需要直接break; $length = count( $arr ); for( $outer = 1; $outer < $length; $outer++ ){ if( $arr[ $outer ] < $arr[ $outer - 1 ] ){ $temp = $arr[ $outer ]; for( $inner = $outer - 1; $inner >= 0; $inner-- ){ if ($arr[ $inner ] > $temp) { $arr[$inner+1] = $arr[$inner]; $arr[$inner] = $temp; } else { break; } } } }

c2498168786 avatar Aug 02 '20 13:08 c2498168786