# gc_impl **Repository Path**: wangwang2020/gc_impl ## Basic Information - **Project Name**: gc_impl - **Description**: 手写 GC 算法 - **Primary Language**: C - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-10-28 - **Last Updated**: 2022-10-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 介绍 常用垃圾回收算法基本实现 ## mark-sweep 标记-清除算法 ## reference-counting(George E. Collins) 引用计数算法 ## copying(Robert R. Fenichel, Jerome C. Yochelson) 复制算法 ## mark-compact(Donald E. Knuth) 标记-整理算法 ## Generational(David Ungar) 分代回收,年轻代使用复制算法,老年代使用标记-清除算法