百分百源码网-让建站变得如此简单! 登录 注册 签到领金币!

主页 | 如何升级VIP | TAG标签

当前位置: 主页>网站教程>网页制作> 运用 PHP 实现 LRU 缓存裁汰算法
分享文章到:

运用 PHP 实现 LRU 缓存裁汰算法

发布时间:09/01 来源:未知 浏览: 关键词:
LRU(cache)

LRU 介绍

缓存是一种提高数据读取机能的技术。但是关于运算机来说,并不成能缓存所有的数据,在到达它的临界空间时,我们需要通过一些规则用新的数据代替掉一部分的缓存数据。这时候你会假如选中更换呢?

更换的战略有许多种,常用的有以下几种:

● FIFO (先进先出战略)

● LFU (最少使用战略)

● LRU (比来最少使用战略)

● NMRU (在比来没有使用的缓存中随机选中一个更换)

介于我这篇主要实现 LRU,所以就不去介绍其他的了,可以自行去理解。

假设你已经有 5 个女伴侣了,此时你成功勾搭上一个新女伴侣,在你着迷女色的同时,你惊讶的发明,你已经不克不及像年轻时一样以一敌六了,你必需舍弃若干个女伴侣,这时候,身拥六个女伴侣的渣男你,彻底展现出你的渣男本色,和比来最少秀恩爱的小姐姐说再见:“对不起,国篮此时需要我挺身发边线球,我楠辞琦咎,再见。”,就这样在你成功勾搭一个新小姐姐,你的身体临界点的同时,你就必需舍弃其他的小姐姐。

下面来张实际点的图搞分明他的道理。

9ace0279c955cd4b1f070ade5df7ffe.png

基于上述图片,我们知道,关于 LRU 的操纵,无非在于插入 (insert), 删除 (delete),乃至更换,针对更换来说,假如缓存空间满了,那么就是 insert to head and delete for tail。假如未满,也分为两种,一种是缓存命中的话,只需要把缓存的值 move to head。假如此前不存在,那么就是 insert to head。

实现历程

接下来就是数据构造的选中了。数组的储备是持续的内存空间,虽然查询的时间复杂度是 O (1), 但是删除和插入为了留存内存空间的持续性,需要停止搬移,那么时间复杂度就是 O (n), 为了实现能快速删除,故而采纳双向链表。但是链表的查询时间复杂度是 O (n), 那么就需要 hash table。屁话说了这么多,代码实现。其实此前刷过这道问题。特意拿出来讲一下。

class LRUCache {
    private $capacity;
    private $list;
    /**
     * @param Integer $capacity
     */
    function __construct($capacity) {
        $this->capacity=$capacity;
        $this->list=new HashList();
    }
    /**
     * @param Integer $key
     * @return Integer
     */
    function get($key) {
        if($key<0) return -1;
        return $this->list->get($key);
    }
    /**
     * @param Integer $key
     * @param Integer $value
     * @return NULL
     */
    function put($key, $value) {
        $size=$this->list->size;
        $isHas=$this->list->checkIndex($key);
        if($isHas || $size+1 > $this->capacity){
            $this->list->removeNode($key);
        }
        $this->list->addAsHead($key,$value);
    }
}
class HashList{
    public $head;
    public $tail;
    public $size;
    public $buckets=[];
    public function __construct(Node $head=null,Node $tail=null){
        $this->head=$head;
        $this->tail=$tail;
        $this->size=0;
    }
    //检查键可否存在
    public function checkIndex($key){
        $res=$this->buckets[$key];
        if($res){
            return true;
        }
        return false;
    }
    public function get($key){
        $res=$this->buckets[$key];
        if(!$res) return -1;
        $this->moveToHead($res);
        return $res->val;
    }
    //新参加的节点
    public function addAsHead($key,$val)
{
        $node=new Node($val);
        if($this->tail==null && $this->head !=null){
            $this->tail=$this->head;
            $this->tail->next=null;
            $this->tail->pre=$node;
        }
        $node->pre=null;
        $node->next=$this->head;
        $this->head->pre=$node;
        $this->head=$node;
        $node->key=$key;
        $this->buckets[$key]=$node;
        $this->size++;
    }
    //移除指针(已存在的键值对或者删除比来最少使用原则)
    public function removeNode($key)
{
        $current=$this->head;
        for($i=1;$i<$this->size;$i++){
            if($current->key==$key) break;
            $current=$current->next;
        }
        unset($this->buckets[$current->key]);
        //调整指针
        if($current->pre==null){
            $current->next->pre=null;
            $this->head=$current->next;
        }else if($current->next ==null){
            $current->pre->next=null;
            $current=$current->pre;
            $this->tail=$current;
        }else{
            $current->pre->next=$current->next;
            $current->next->pre=$current->pre;
            $current=null;
        }
        $this->size--;
    }
    //把对应的节点应到链表头部(比来get或者刚刚put进去的node节点)
    public function moveToHead(Node $node)
{
        if($node==$this->head) return ;
        //调整前后指针指向
        $node->pre->next=$node->next;
        $node->next->pre=$node->pre;
        $node->next=$this->head;
        $this->head->pre=$node;
        $this->head=$node;
        $node->pre=null;
    }
}
class Node{
    public $key;
    public $val;
    public $next;
    public $pre;
    public function __construct($val)
{
        $this->val=$val;
    }
}
/**
 * Your LRUCache object will be instantiated and called as such:
 * $obj = LRUCache($capacity);
 * $ret_1 = $obj->get($key);
 * $obj->put($key, $value);

Github 整理地址:https://github.com/wuqinqiang/leetcode-php

更多PHP知识,请拜访PHP中文网!

以上就是使用 PHP 实现 LRU 缓存裁汰算法的具体内容,更多请关注百分百源码网其它相关文章!

打赏

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

百分百源码网 建议打赏1~10元,土豪随意,感谢您的阅读!

共有155人阅读,期待你的评论!发表评论
昵称: 网址: 验证码: 点击我更换图片
最新评论

本文标签

广告赞助

能出一分力是一分吧!

订阅获得更多模板

本文标签

广告赞助

订阅获得更多模板