You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit implements hybrid allocation approach to balance speed and
memory efficiency:
- First-fit for small allocations (≤64 bytes) for speed optimization
- Best-fit for large allocations (>64 bytes) for memory efficiency
- Early exit optimization on perfect matches in best-fit search
0 commit comments