选择排序-PHP

12 篇文章 0 订阅

github 地址 :  https://github.com/luolaifa000/phpStudyCode/blob/master/SelectSort.php

基本思想为每一趟从待排序的数据元素中选择最小(或最大)的一个元素作为首元素,直到所有元素排完为止,简单选择排序是不稳定排序

<?php
function pre($arr)
{
    $data = func_get_args();
    foreach($data as $key=>$val)
    {
        echo '<pre>';
        print_r($val);
        echo '</pre>';
    }
}

function prend()
{
    $data = func_get_args();
    foreach($data as $key=>$val)
    {
        echo '<pre>';
        print_r($val);
        echo '</pre>';
    }
    exit();
}
/**
 * 选择排序 
 * 基本思想为每一趟从待排序的数据元素中选择最小(或最大)的一个元素作为首元素,直到所有元素排完为止,简单选择排序是不稳定排序
 * @author yumancang
 *
 */
class SelectSort
{
    /**
     * 整数数组
     * @var array
     */
    public $data = [];

    public function __construct($array)
    {
        $this->data = $array;

    }
    
    /**
     * 升序选择 
     * 时间复杂度  n n-1 n-2 n-3 .... 1   (1+n)*n/2 = O(n2)
     */
    public function ascSelectSort()
    {
        pre($this->data);
        $length = count($this->data);
        
        for ($i = 0; $i< $length-1; $i++) {
            for ($j = $i; $j < $length-1; $j++) {
                if ($this->data[$j] < $this->data[$j+1]) {
                    $temp = $this->data[$j+1];
                    $this->data[$j+1] = $this->data[$j];
                    $this->data[$j] = $temp;
                }  
            }
            
            $temp = $this->data[$length-1];
            $this->data[$length-1] = $this->data[$i];
            $this->data[$i] = $temp;
            
        }
        pre($this->data);
    }
    
    /**
     * 降序选择 
     * 时间复杂度  n n-1 n-2 n-3 .... 1   (1+n)*n/2 = O(n2)
     */
    public function descSelectSort()
    {
        pre($this->data);
        $length = count($this->data);
        
        for ($i = 0; $i< $length-1; $i++) {
            for ($j = $i; $j < $length-1; $j++) {
                if ($this->data[$j] > $this->data[$j+1]) {
                    $temp = $this->data[$j+1];
                    $this->data[$j+1] = $this->data[$j];
                    $this->data[$j] = $temp;
                }
            }
            
            $temp = $this->data[$length-1];
            $this->data[$length-1] = $this->data[$i];
            $this->data[$i] = $temp;
            
        }
        pre($this->data);
    }
    

        
}

$start = memory_get_usage();

$select = new SelectSort([7,3,2,4,6,9,5]);
//$select->ascSelectSort();
$select->descSelectSort();
$end = memory_get_usage();
prend(($end-$start)/1024/1024);

?>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值