BIG
<?php
// ######################################################################
// 작 성 자 : 은랑
// 버블정렬 예제 샘플파일
// ######################################################################
$arr_data = array(78, 68, 15, 35, 46, 79, 95, 3, 5, 2, 1);
$loopCnt1 = 0;
$loopCntlimit1 = count($num);
$loopCnt2 = 0;
$loopCntlimit2 = count($num) + 1;
for($loopCnt1=0; $loopCntlimit1>$loopCnt1; $loopCnt1++)
{
for($loopCnt2=0; $loopCntlimit2>$loopCnt2; $loopCnt2++)
{
$temp = "";
if($arr_data[$loopCnt1] > $arr_data[$loopCnt2])
{
$temp = $arr_data[$loopCnt1];
$arr_data[$loopCnt1] = $arr_data[$loopCnt2];
$arr_data[$loopCnt2] = $temp;
}// end if
}// end for
}// end for
echo "<pre>";
var_dump( $arr_data );
echo "</pre>";
?>
LIST
'!!...PHP > !!...SAMPLE' 카테고리의 다른 글
[PHP]08_텔레그램 메시지 발송 함수(telegram message sending function) (0) | 2022.04.03 |
---|---|
[PHP]07_퀵정렬( quick sort ) (0) | 2022.04.03 |
[PHP]05_1~10 까지의 합 (0) | 2022.04.03 |
[PHP]04_문자열추출 (0) | 2022.04.03 |
[PHP]03 달력( Calendar ) (0) | 2022.04.03 |