• 【数据结构与算法之美】基于单链表LRU算法


    我们维护一个有序单链表,越靠近链表尾部的节点是越早之前访问的,当有一个新的数据被访问时,我们从链表头开始顺序遍历链表。
    *
    * 1.如果此数据之前在缓存在链表中了,我们遍历得到这个数据对应的节点,并将其从原来的位置删除,然后在插入到链表的头部。
    *
    * 2.如果此数据中没有缓存链表中,可以分为两个情况
    *
    * - 如果此时缓存没满,则将此节点直接插入到链表的头部。
    * - 如果此时缓存已满,则链表尾节点删除,则将新的数据节点插入链表的头部
    
    package com.ncst.likedlist;
    
    /**
     * @author i
     * @create 2019/12/19 9:34
     * @Description 基于单链表实现LRU算法
     */
    public class LRUBaseLikedList2 <T>{
    
        private static final Integer DEFAULT_CAPACITY = 5;//初始化容量
    
        private Integer capacity;//容量
    
        private Integer length;//长度
    
        private Node headNode;//头结点
    
        //指定默认大小
        public LRUBaseLikedList2(int capacity){
            this.capacity = capacity;
            headNode = new Node(null);
            length = 0;
        }
    
        //初始化默认大小
        public LRUBaseLikedList2(){
            this.capacity = DEFAULT_CAPACITY;
            headNode = new Node(null);
            length = 0;
        }
    
        public void add(T data){
            //查看当前数据的前一个结点
            Node preNode = serarchPreNode(data);
            if (preNode!=null){
            //如果找到
                //删除当前结点
                deleteCurNode(data);
                //添加到首结点上
                addFirstNode(data);
            }else {
            //如果没有找到
                if (length == capacity){
                //如果没有找到当 length==capacity 删除尾结点
                    deleteLastNode();
                }
                //直接插入到首结点
                addFirstNode(data);
            }
        }
    
        private void deleteCurNode(T data){
            Node node = headNode;
            while (node.next!=null){
                if (data.equals(node.next.data)){
                    break;
                }
                node = node.next;
            }
            Node curNodeNext = node.next.next;
            node.setNext(curNodeNext);
            length--;
        }
    
        private void deleteCurNode(Node pre){
            Node node = pre.next;
            pre.setNext(node.next);
            node = null;
            length--;
        }
    
        private void deleteLastNode(){
            Node node = headNode;
            while (node.next.next!=null){
                node = node.next;
            }
            Node temp = node.next;
            node.setNext(null);
            temp = null;
            length--;
        }
    
        private void addFirstNode(T data){
            Node node = headNode;
            Node nextNode = null;
            if (node.next!=null){
                nextNode = node.next;
                headNode.setNext(new Node(data,nextNode));
            }else {
                headNode.setNext(new Node(data));
            }
            length++;
        }
    
        private Node serarchPreNode(T data){
            Node head = headNode;
            while (head.next!=null){
                if (data.equals(head.next.data)){
                    return head;
                }
                head = head.next;
            }
            return null;
        }
    
        public void printfAll(){
            Node node = headNode;
            while (node!=null){
                System.out.print(node.data+",");
                node = node.next;
            }
        }
    
        class Node<T>{
            private T data;
            private Node next;
    
            public Node(T data){
                this.data = data;
            }
    
            public Node(T data,Node next){
                this.data = data;
                this.next = next;
            }
    
            public T getData() {
                return data;
            }
    
            public void setData(T data) {
                this.data = data;
            }
    
            public Node getNext() {
                return next;
            }
    
            public void setNext(Node next) {
                this.next = next;
            }
        }
    
        public static void main(String[] args) {
            LRUBaseLikedList2 list2 = new LRUBaseLikedList2();
            list2.add(0);
            list2.add(1);
            list2.add(2);
            list2.add(3);
    //        list2.add(2);//6,3,2,1,
           //list2.add(5);
            list2.printfAll();
    
        }
    
    }
    
  • 相关阅读:
    PTA 7-5 有趣的最近公共祖先问题 (30分)
    平衡二叉树的旋转类型及代码实现
    Ubuntu搭建青岛大学开源OJ
    见过猪跑现在开始吃猪肉了
    工作4年的老腊肉的总结
    服务器日志的目录
    Jacoco配置的问题
    一次述职之后的反省
    Python+Webdriver+Phantomjs,设置不同的User-Agent,获得的url不一致
    Eclipse+Pydev 找不到对应的module not in Pythonpath
  • 原文地址:https://www.cnblogs.com/qxlxi/p/12860752.html
Copyright © 2020-2023  润新知