Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 632 Bytes

File metadata and controls

25 lines (20 loc) · 632 Bytes

Malloc_Lab 과제

Implicit List

First Fit

Results for mm malloc:
Perf index = 44 (util) + 13 (thru) = 58/100

Next Fit

Results for mm malloc:
Perf index = 44 (util) + 40 (thru) = 84/100

Best Fit

Results for mm malloc:
Perf index = 45 (util) + 12 (thru) = 57/100

Explicit List

Results for mm malloc:
Perf index = 42 (util) + 40 (thru) = 82/100

Segregated List

Results for mm malloc:
Perf index = 44 (util) + 40 (thru) = 84/100

Segregated List + Reallocate 함수 최적화 (Final)

Results for mm malloc:
Perf index = 50 (util) + 40 (thru) = 90/100