# algorithm **Repository Path**: f_founder/algorithm ## Basic Information - **Project Name**: algorithm - **Description**: 各种算法整理 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2017-08-16 - **Last Updated**: 2021-11-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # algorithm java 算法 排序算法 https://itimetraveler.github.io/2017/07/18/八大排序算法总结与java实现/ 缓存淘汰算法 FIFO 先进先出 LFU 最少使用算法 LFU(Least Frequently Used)最近最少使用算法。它是基于“如果一个数据在最近一段时间内使用次数很少,那么在将来一段时间内被使用的可能性也很小”的思路。 LRU LRU全称是Least Recently Used,即最近最久未使用的意思 注意LFU和LRU算法的不同之处,LRU的淘汰规则是基于访问时间,而LFU是基于访问次数的。 # 加解密算法 * RSA * AES