# Primary-Algorithm-Using-Python **Repository Path**: mag1cwgs/primary-algorithm-using-python ## Basic Information - **Project Name**: Primary-Algorithm-Using-Python - **Description**: 用于本科课程《算法导论》 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2024-12-09 - **Last Updated**: 2024-12-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 项目介绍 作为算法导论课上代码仓库使用,使用 Python 3.12 实现了一些最基础的算法。 课上使用教材:《图解算法 使用 python》、《图解算法 使用 python 第二版》 # 文件架构 ``` * AlgorithmTheory_using_python | * - venv // library 根目录,作为虚拟环境 | | | * - ... | * - book_program // 课本示例文件 | | | * - ver1 // 第一版教材中的文件 | | | | | * - ch01 // 第一章节 | | | | | * - ... | | | * - ver2 // 第二版教材中的文件 | | | * - ex02 // 第二章节 | | | | * - ... | * - homework_file // 课上、课后练习代码 | | | * - Array_Linklist // 数组、链表相关算法 | | | * - ... // 其他专题算法 | * - refactored_Alg // 重构后的算法代码 | | | * - Array_Linklist // 数组、链表相关算法 | | | * - ... // 其他专题算法 | * README.MD // 当前文件 | * run.py //用于作为测试文件 ```