数据结构
桉夏与猫
啥啥啥?这都是啥?
展开
-
计算机算法设计与分析——递归
例1-1 阶乘函数 def factorial(n): if n==0: return 1 return n*factorial(n-1)原创 2021-06-10 10:32:03 · 158 阅读 · 0 评论 -
【数据结构】选择排序 二分查找 C++
选择排序 #include<iostream> using namespace std; void SelectSort(int *A,const int n); int main(){ int A[]={1,3,2,5,7,2,13,5,6,98}; SelectSort(A,10); for(int i=0;i<10;i++){ co...原创 2019-05-31 20:04:12 · 192 阅读 · 0 评论 -
【数据结构】快速排序 与 归并排序C++实现
快速排序: #include<iostream> using namespace std; template<class T> void QuickSort(T *A,const int left,const int right) { if(left<right) { int i=left; int j=right; ...原创 2019-06-02 15:46:37 · 296 阅读 · 0 评论