# algorithms **Repository Path**: heng_w/algorithms ## Basic Information - **Project Name**: algorithms - **Description**: 常用算法(C++实现) - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-17 - **Last Updated**: 2021-08-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## algorithms ## 算法 #### 实现语言:C++ #### 数据结构(data_structure) - array_list.cpp: 动态数组实现的线性表 #### 排序(sort) - quick_sort.cpp:快速排序 - heap_sort.cpp:堆排序 #### 数值方法(numerical_methods) - SOR.cpp:SOR迭代法(线性方程组求解) - gaussian_elimination.cpp:列主元高斯消元法(线性方程组求解) - cholesky.cpp:平方根法(线性方程组求解) - cubic_spline_interpolation.cpp:三次样条插值法 - newton_interpolation.cpp:牛顿插值法 - romberg_integration.cpp:Romberg法求积分