├── LICENSE ├── README.md ├── common ├── ComputerGraphics │ └── README.md ├── ComputerNetwork │ └── README.md ├── ComputerSystemFundamentals │ └── readme.md ├── CppProjects │ └── README.md ├── DataStructuresAndAlgorithms │ └── readme.md ├── NumericalAnalysis │ └── readme.md ├── ObjectOrientedProgramming │ └── README.md ├── OperatingSystem │ └── readme.md ├── PrinciplesOfComputerComposition │ └── readme.md ├── SoftwareEngineering │ └── readme.md └── SoftwareSystemDesignAndAnalysis │ └── readme.md ├── how_to_use_pull_requests.md └── img ├── fork.png └── pull_request.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/README.md -------------------------------------------------------------------------------- /common/ComputerGraphics/README.md: -------------------------------------------------------------------------------- 1 | # 计算机图形学基础课程实验 2 | 3 | ## 秦勃 4 | 5 | - [Amoniaa](https://github.com/Amoniaa/CG) 6 | 7 | -------------------------------------------------------------------------------- /common/ComputerNetwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/common/ComputerNetwork/README.md -------------------------------------------------------------------------------- /common/ComputerSystemFundamentals/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/common/ComputerSystemFundamentals/readme.md -------------------------------------------------------------------------------- /common/CppProjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/common/CppProjects/README.md -------------------------------------------------------------------------------- /common/DataStructuresAndAlgorithms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/common/DataStructuresAndAlgorithms/readme.md -------------------------------------------------------------------------------- /common/NumericalAnalysis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/common/NumericalAnalysis/readme.md -------------------------------------------------------------------------------- /common/ObjectOrientedProgramming/README.md: -------------------------------------------------------------------------------- 1 | # C++ 基础课程实验 2 | 3 | ## 亓琳 4 | 5 | - [Leo](https://github.com/LiuYangMrLY/Cpp-Experiment) 6 | 7 | -------------------------------------------------------------------------------- /common/OperatingSystem/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/common/OperatingSystem/readme.md -------------------------------------------------------------------------------- /common/PrinciplesOfComputerComposition/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/common/PrinciplesOfComputerComposition/readme.md -------------------------------------------------------------------------------- /common/SoftwareEngineering/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/common/SoftwareEngineering/readme.md -------------------------------------------------------------------------------- /common/SoftwareSystemDesignAndAnalysis/readme.md: -------------------------------------------------------------------------------- 1 | # 软件系统设计与分析 2 | 3 | ## 图书管理系统 4 | 5 | - [yyx](https://github.com/19020011038/Library) 6 | 7 | -------------------------------------------------------------------------------- /how_to_use_pull_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/how_to_use_pull_requests.md -------------------------------------------------------------------------------- /img/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/img/fork.png -------------------------------------------------------------------------------- /img/pull_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITStudioOUC/awesome-ouc-cs/HEAD/img/pull_request.png --------------------------------------------------------------------------------