位图--100万个数字用位图存储--PHP

12 篇文章 0 订阅

github地址: https://github.com/luolaifa000/phpStudyCode/blob/master/BitMap.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();
}

class BitMap
{
    /**
     * 整数数组
     * @var array
     */
    public $data = [];
    /**
     * 位图数组
     * @var array
     */
    public $bitmap = [];
    
    public function __construct($array)
    {
        $this->data = $array;
        sort($this->data);
        $max = $this->data[count($this->data) - 1];
        $this->bitmap = array_fill(0, ceil($max/64), 0);
    }
    
    /**
     * 将常规数组转成位图数组
     * 
     */
    public function saveArrayToBitmap()
    {
        pre($this->data);
        foreach ($this->data as $key => $val) {
            $arrayindex = floor($val / 64);
            $bitindex = $val % 64;
            $temp = 1 << $bitindex;
            
            $this->bitmap[$arrayindex] = $this->bitmap[$arrayindex] | $temp;
            
        }
        
        /* foreach ($this->bitmap as $key => $val) {
            pre(decbin($val));
        } */
    }
    
    /**
     * 将位图数组转成常规数组
     *
     */
    public function saveBitmapToArray()
    {
        $k = 0;
        $array = [];
        foreach ($this->bitmap as $key => $val) {
            for ($i = 0; $i<64;$i++) {
                $temp = 1 << $i;
                $flag = $this->bitmap[$key] & $temp;
                if ($flag) {
                    $array[$k] = 64*$key + $i;
                }
                $k++;
            }
        }
        
        pre($array);
    }
}

$start = memory_get_usage();
$k = 0;
$max = 1000;
for ($i = 1;$i<$max;$i++) {
    
    $ass[$k] = rand(0,$max);
    $k++;
}

$bitmap = new BitMap($ass);
$bitmap->saveArrayToBitmap();
$bitmap->saveBitmapToArray();


$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、付费专栏及课程。

余额充值