Initial commit

This commit is contained in:
2025-11-06 10:36:22 +08:00
commit cac8cf6ad7
20 changed files with 2373 additions and 0 deletions

12
CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 4.0)
project(Experiment)
set(CMAKE_CXX_STANDARD 20)
add_executable(CPUScheduler CPUScheduler.cpp)
add_executable(ProcessSync ProcessSync.cpp)
add_executable(DeadlockAvoid DeadlockAvoid.cpp)
add_executable(MemoryManager MemoryManager.cpp)