Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 378 Bytes

notes.md

File metadata and controls

17 lines (14 loc) · 378 Bytes

Notes

Missing

  • f(void) in function declaration
  • struct assignment: deep/shallow copy

Erratum

  • bsearch.c:
    • int mid = (low + high) / 2 may encounter overflow
    • using int mid = low + (high - low) / 2

What is Next?