一個最簡單的LRUCache實現 (JAVA)

流程圖:    1. 代碼 1 import java.util.ArrayList; 2 3 public class LRUCache { 4 private int cacheMaxSize = 0; 5 private ArrayList<Integer> pages = null; // Interger means page id 6 7 pu
相關文章
相關標籤/搜索