From ac0d108f9da98ee9bd98378371f1931bde1f49c2 Mon Sep 17 00:00:00 2001 From: 0x221E Date: Sun, 18 Jan 2026 22:14:27 +0100 Subject: [PATCH] Add: General, C, Graph categories. --- C.md | 2 ++ General.md | 2 ++ Graph.md | 3 +++ 3 files changed, 7 insertions(+) create mode 100644 C.md create mode 100644 General.md create mode 100644 Graph.md diff --git a/C.md b/C.md new file mode 100644 index 0000000..50e1a53 --- /dev/null +++ b/C.md @@ -0,0 +1,2 @@ +## Memory Alignment & Struct Padding +- http://www.catb.org/esr/structure-packing/ \ No newline at end of file diff --git a/General.md b/General.md new file mode 100644 index 0000000..3e4d5b3 --- /dev/null +++ b/General.md @@ -0,0 +1,2 @@ +## Cache Memory +- diff --git a/Graph.md b/Graph.md new file mode 100644 index 0000000..0bc4af4 --- /dev/null +++ b/Graph.md @@ -0,0 +1,3 @@ +## Directed Acyclic Graphs +- https://ocw.mit.edu/courses/6-042j-mathematics-for-computer-science-spring-2015/mit6_042js15_session17.pdf +- https://www.geeksforgeeks.org/dsa/introduction-to-directed-acyclic-graph/