728x90 AdSpace

Latest News
Sunday, February 11, 2018

Viết hàm để sắp xếp mảng

Dưới đây là phần PHP code để giải bài tập PHP trên:
<html>
   
   <head>
      <title>Viết hàm để sắp xếp mảng PHP</title>
   </head>
   <body>
   
       <?php
        function ham_sap_xep_mang($a)  
  {  
   for($x=0; $x < count($a);++$x)  
    {  
   $min = $x;  
    for($y=$x+1; $y < count($a);++$y)  
     {  
    if($a[$y] < $a[$min] )   
    {  
      $temp = $a[$min];  
      $a[$min] = $a[$y];  
      $a[$y] = $temp;  
    }  
   }  
    }  
   return $a;  
   }  
  $a = array(51,14,1,21,'hj');  
  print_r(ham_sap_xep_mang($a));
       ?>
       
   </body>
</html>

Kết quả

Lưu PHP code trên trong một file có tên là test.php trong htdocs, sau đó mở trình duyệt và gõ địa chỉ http://localhost:8080/test.php sẽ cho kết quả:

  • Blogger Comments
  • Facebook Comments

0 comments:

Post a Comment

Item Reviewed: Viết hàm để sắp xếp mảng Rating: 5 Reviewed By: Genm