# 算法 **Repository Path**: why1235678/algorithm ## Basic Information - **Project Name**: 算法 - **Description**: 算法案例 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-13 - **Last Updated**: 2024-03-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 算法练习 收集常用算法题,包括解题思路和解题代码,时间复杂度,空间复杂度 > 算法 1. 复杂度 2. 双指针 快慢指针 背向指针 3. 滑动窗口 4. 二叉树 > 复杂度 时间复杂度 空间复杂度 big O 表示法: 表示增长趋势 O(1) O(n) O(logn) O(n^2) 最好情况下的时间复杂度 最坏情况下的时间复杂度 平均情况时间复杂度 ## 参考文献: [hello-algo](https://www.hello-algo.com/chapter_sorting/selection_sort/) [30secondsofcode](https://www.30secondsofcode.org/js/algorithm/p/1/)