Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 883 Bytes

File metadata and controls

16 lines (13 loc) · 883 Bytes

Learning C++

A collection of C++ programs, exercises, and projects created while learning C++.

Structure

  • hw/ — Homework assignments (hw01–hw05, plus a bonus)
  • lab/ — Lab exercises (lab01–lab13)
  • projects/ — Personal projects and practice
    • graphics/ — Terminal graphics experiments (sine waves, cubes, colors)
    • leetcode/ — LeetCode and HackerRank problem solutions
    • fun/ — Miscellaneous fun programs (truth tables, etc.)
    • fibbo/ — Fibonacci implementation
    • deep_dives/ — Deep dives into hardware-level topics: bitwise operators, branchless programming, bit packing, x86 assembly analysis, and HFT system design patterns (index)
  • idk/ — Scratch files and experimentation (pointers, vectors, matrices, TUI apps, etc.)
  • notes_to_study.md — Java/OOP study notes for CS203